1
0
mirror of https://github.com/nlohmann/json synced 2024-11-23 04:20:06 +00: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
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
2 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
<a target="_blank" href="https://wandbox.org/permlink/fYRwW2ctRMeM0Lof"><b>online</b></a>
<a target="_blank" href="https://wandbox.org/permlink/NO1FFrAierprHk0j"><b>online</b></a>

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