diff --git a/website/docs/reference/templating.mdx b/website/docs/reference/templating.mdx index 9f517108..b85870aa 100644 --- a/website/docs/reference/templating.mdx +++ b/website/docs/reference/templating.mdx @@ -256,7 +256,7 @@ description here for completeness. For detailed usage, please refer to the | ---------------- | ------------------------------------------------------------------ | | `fromJson`\* | Decodes a JSON string into an object. | | `toJson`\* | Encodes an object as a JSON string. | -| `toPrettyJson`\* | Encodes an object as a JSON string with new lines and indentarion. | +| `toPrettyJson`\* | Encodes an object as a JSON string with new lines and indentation. | | `toRawJson`\* | Encodes an object as a JSON string with HTML characters unescaped. | | `b64enc` | Encodes a string into base 64. | | `b64dec` | Decodes a string from base 64. | @@ -322,12 +322,12 @@ description here for completeness. For detailed usage, please refer to the | `base` | Returns the last element of a path. | | `dir` | Returns the directory of a path. | | `clean` | Cleans up a path. | -| `ext` | Returns the file extention of a path. | +| `ext` | Returns the file extension of a path. | | `isAbs` | Checks if a path is absolute. | | `osBase` | Returns the last element of a filepath. | | `osDir` | Returns the directory of a filepath. | | `osClean` | Cleans up a filepath. | -| `osExt` | Returns the file extention of a filepath. | +| `osExt` | Returns the file extension of a filepath. | | `osIsAbs` | Checks if a filepath is absolute. | #### [Flow Control Functions][flow-control-functions]