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

📝 fixed documentation

There was an issue in the documentation example before. Unfortunately, I did not recreate the example outputs.
This commit is contained in:
Niels Lohmann
2017-07-08 22:16:45 +02:00
parent 87bccbc335
commit f697fec522
2 changed files with 5 additions and 5 deletions

View File

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