Daniele Bartolini hace 10 años
padre
commit
0058454bf8
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 1 1
      src/core/filesystem/file.h
  2. 2 2
      src/core/json/json.h

+ 1 - 1
src/core/filesystem/file.h

@@ -33,7 +33,7 @@ public:
 	/// to the cursor position.
 	virtual u32 position() = 0;
 
-	/// Returns whether the position is at end of file.
+	/// Returns whether the cursor position is at end of file.
 	virtual bool end_of_file() = 0;
 
 	/// Sets the cursor to @a position.

+ 2 - 2
src/core/json/json.h

@@ -41,10 +41,10 @@ namespace json
 	/// key to pointer to the corresponding value into the original string @a json.
 	void parse_object(const char* json, JsonObject& object);
 
-	/// Parses the NJSON-encoded @a json.
+	/// Parses the JSON-encoded @a json.
 	void parse(const char* json, JsonObject& object);
 
-	/// Parses the NJSON-encoded @a json.
+	/// Parses the JSON-encoded @a json.
 	void parse(Buffer& json, JsonObject& object);
 } // namespace json
 } // namespace crown