Browse Source

Merge pull request #41 from spinute/fix-maybe-typo

fix a typo (maybe)
Takeru Ohta 6 years ago
parent
commit
5f36206b9e
2 changed files with 2 additions and 2 deletions
  1. 1 1
      doc/jsone.md
  2. 1 1
      src/jsone.erl

+ 1 - 1
doc/jsone.md

@@ -83,7 +83,7 @@ decode_option() = {object_format, tuple | proplist | map} | {allow_ctrl_chars, b
 - default: `map` if OTP version is OTP-17 or more, `tuple` otherwise <br />
 
 `allow_ctrl_chars`: <br />
-- If the value is `true`, strings which contain ununescaped control characters will be regarded as a legal JSON string <br />
+- If the value is `true`, strings which contain unescaped control characters will be regarded as a legal JSON string <br />
 - default: `false`<br />
 
 `keys`: <br />

+ 1 - 1
src/jsone.erl

@@ -238,7 +238,7 @@
 %% - default: `map' if OTP version is OTP-17 or more, `tuple' otherwise <br />
 %%
 %% `allow_ctrl_chars': <br />
-%% - If the value is `true', strings which contain ununescaped control characters will be regarded as a legal JSON string <br />
+%% - If the value is `true', strings which contain unescaped control characters will be regarded as a legal JSON string <br />
 %% - default: `false'<br />
 %%
 %% `keys': <br />