Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
0767290c
Commit
0767290c
authored
Jun 24, 2016
by
Niels
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
off-by-one error in the documentation
parent
ca2bbdb1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
README.md
README.md
+1
-1
test/src/unit.cpp
test/src/unit.cpp
+1
-1
No files found.
README.md
View file @
0767290c
...
...
@@ -323,7 +323,7 @@ json j_original = R"({
})"
_json
;
// access members with a JSON pointer (RFC 6901)
j_original
[
"/baz/
2
"
_json_pointer
];
j_original
[
"/baz/
1
"
_json_pointer
];
// "two"
// a JSON patch (RFC 6902)
...
...
test/src/unit.cpp
View file @
0767290c
...
...
@@ -10531,7 +10531,7 @@ TEST_CASE("README", "[hide]")
})"
_json
;
// access members with a JSON pointer (RFC 6901)
j_original
[
"/baz/
2
"
_json_pointer
];
j_original
[
"/baz/
1
"
_json_pointer
];
// "two"
// a JSON patch (RFC 6902)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment