We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version of diffson: 4.1.1
In README.markdown, section "Basic Usage", the result of patch[Try](json1) is shown as:
patch[Try](json1)
{ "d":false, "c":"test2", "a":6 }
and the text says "... which we can easily verify is the same as json2 modulo reordering of fields".
However, json2 was actually:
json2
{ "a": 6, "c": ["test2", "plop"], "d": false }
which is not the same as the purported patch result (the "c" fields differ).
The text was updated successfully, but these errors were encountered:
Indeed this needs to be fixed. Thanks for reporting.
Sorry, something went wrong.
satabin
No branches or pull requests
version of diffson: 4.1.1
In README.markdown, section "Basic Usage", the result of
patch[Try](json1)
is shown as:and the text says "... which we can easily verify is the same as json2 modulo reordering of fields".
However,
json2
was actually:which is not the same as the purported patch result (the "c" fields differ).
The text was updated successfully, but these errors were encountered: