1
0
mirror of https://github.com/go-task/task.git synced 2025-01-18 04:59:01 +02:00

fix: more docs typos

This commit is contained in:
Pete Davison 2024-06-03 09:28:53 +00:00
parent 527bbc3bf5
commit 0810ef01b0
No known key found for this signature in database
GPG Key ID: 2ABFD790DF2521A2

View File

@ -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]