1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

fixed documentation

This commit is contained in:
Niels
2016-01-24 22:43:00 +01:00
parent 31093694ce
commit c09d03fba7
7 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
null
false
0
0
0.0
{}
[]
""

View File

@ -1,7 +1,7 @@
null
false
0
0
0.0
{}
[]
""

View File

@ -1,4 +1,4 @@
[1,2,3] == [1,2,4] false
{"A":"a","B":"b"} == {"A":"a","B":"b"} true
17 == 17 true
17 == 17.0 true
"foo" == "bar" false

View File

@ -1,4 +1,4 @@
[1,2,3] == [1,2,4] true
{"A":"a","B":"b"} == {"A":"a","B":"b"} false
17 == 17 false
17 == 17.0 false
"foo" == "bar" true