Skip to content

Commit 17ac165

Browse files
committed
Doc update
1 parent a201cc9 commit 17ac165

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/ref/jsonpointer/basic_json_pointer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ First, appends the JSON Pointer separator `/`. Then appends the token s, escapin
5555
template <class IntegerType>
5656
basic_json_pointer& operator/=(IntegerType index)
5757
First, appends the JSON Pointer separator `/`. Then appends the token `index`.
58-
This overload only participates in overload resolution if IntegerType is an integer type.
58+
This overload only participates in overload resolution if `IntegerType` is an integer type.
5959
6060
basic_json_pointer& operator+=(const basic_json_pointer& ptr)
6161
Concatenates the current pointer and the specified pointer `ptr`.
@@ -82,7 +82,7 @@ Concatenates a JSON Pointer pointer and a string. Effectively returns basic_json
8282
template <class CharT,class IntegerType>
8383
basic_json_pointer<CharT> operator/(const basic_json_pointer<CharT>& lhs, IntegerType index);
8484
Concatenates a JSON Pointer pointer and an index. Effectively returns basic_json_pointer<CharT>(lhs) /= index.
85-
This overload only participates in overload resolution if IntegerType is an integer type.
85+
This overload only participates in overload resolution if `IntegerType` is an integer type.
8686
8787
template <class CharT,class IntegerType>
8888
basic_json_pointer<CharT> operator+( const basic_json_pointer<CharT>& lhs, const basic_json_pointer<CharT>& rhs );

0 commit comments

Comments
 (0)