diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-10-03 13:19:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 07:19:11 +1100 |
commit | d0eb179132c60a7c2513c9d19db03e3d5ca00c70 (patch) | |
tree | 627339e0dc2212ed861184d46b6af31605224d24 /std/encoding | |
parent | 391eed42f41bd277fff936192b474bfd52eaa1a0 (diff) |
docs: end sentences with a period in markdown (#7813)
Diffstat (limited to 'std/encoding')
-rw-r--r-- | std/encoding/README.md | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/std/encoding/README.md b/std/encoding/README.md index 2f0ac91f1..9dec37a33 100644 --- a/std/encoding/README.md +++ b/std/encoding/README.md @@ -70,12 +70,12 @@ function is as follows: ##### `ReadOptions` -- **`comma?: string;`**: Character which separates values. Default: `','` -- **`comment?: string;`**: Character to start a comment. Default: `'#'` +- **`comma?: string;`**: Character which separates values. Default: `','`. +- **`comment?: string;`**: Character to start a comment. Default: `'#'`. - **`trimLeadingSpace?: boolean;`**: Flag to trim the leading space of the - value. Default: `false` + value. Default: `false`. - **`lazyQuotes?: boolean;`**: Allow unquoted quote in a quoted field or non - double quoted quotes in quoted field. Default: 'false` + double quoted quotes in quoted field. Default: `false`. - **`fieldsPerRecord?`**: Enabling the check of fields for each row. If == 0, first row is used as referral for the number of fields. @@ -226,9 +226,9 @@ console.log(tomlObject); ## YAML -YAML parser / dumper for Deno +YAML parser / dumper for Deno. -Heavily inspired from [js-yaml] +Heavily inspired from [js-yaml]. ### Basic usage @@ -294,17 +294,17 @@ Serializes `object` as a YAML document. ### :warning: Limitations -- `binary` type is currently not stable -- `function`, `regexp`, and `undefined` type are currently not supported +- `binary` type is currently not stable. +- `function`, `regexp`, and `undefined` type are currently not supported. ### More example -See https://github.com/nodeca/js-yaml. +See: https://github.com/nodeca/js-yaml ## base32 [RFC4648 base32](https://tools.ietf.org/html/rfc4648#section-6) encoder/decoder -for Deno +for Deno. ### Basic usage @@ -326,7 +326,7 @@ console.log(encode(binaryData)); ## ascii85 -Ascii85/base85 encoder and decoder with support for multiple standards +Ascii85/base85 encoder and decoder with support for multiple standards. ### Basic usage |