Browse Source

Clearer grammar (#5142)

* Clearer grammar

* Clearer grammar
IBwWG 9 years ago
parent
commit
781ddde9e4
2 changed files with 6 additions and 6 deletions
  1. 4 4
      std/haxe/Json.hx
  2. 2 2
      std/haxe/format/JsonPrinter.hx

+ 4 - 4
std/haxe/Json.hx

@@ -34,7 +34,7 @@ class Json {
 		Parses given JSON-encoded `text` and returns the resulting object.
 
 		JSON objects are parsed into anonymous structures and JSON arrays
-		are parsed into Array<Dynamic>.
+		are parsed into `Array<Dynamic>`.
 
 		If given `text` is not valid JSON, an exception will be thrown.
 
@@ -45,10 +45,10 @@ class Json {
 	}
 
 	/**
-		Encodes given `value` and returns the resulting JSON string.
+		Encodes the given `value` and returns the resulting JSON string.
 
-		If `replacer` is given and is not null, it is used to retrieve
-		actual object to be encoded. The `replacer` function two parameters,
+		If `replacer` is given and is not null, it is used to retrieve the
+		actual object to be encoded. The `replacer` function takes two parameters,
 		the key and the value being encoded. Initial key value is an empty string.
 		
 		If `space` is given and is not null, the result will be pretty-printed.

+ 2 - 2
std/haxe/format/JsonPrinter.hx

@@ -32,10 +32,10 @@ package haxe.format;
 class JsonPrinter {
 
 	/**
-		Encodes `o` value and returns the resulting JSON string.
+		Encodes `o`'s value and returns the resulting JSON string.
 
 		If `replacer` is given and is not null, it is used to retrieve
-		actual object to be encoded. The `replacer` function two parameters,
+		actual object to be encoded. The `replacer` function takes two parameters,
 		the key and the value being encoded. Initial key value is an empty string.
 
 		If `space` is given and is not null, the result will be pretty-printed.