diff options
Diffstat (limited to 'json-glib/json-path.c')
-rw-r--r-- | json-glib/json-path.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/json-glib/json-path.c b/json-glib/json-path.c index c46d210..dd04d58 100644 --- a/json-glib/json-path.c +++ b/json-glib/json-path.c @@ -79,8 +79,8 @@ * the first element of the book array of the store object. * * * Subsets of element nodes can be accessed using the set notation - * operator `[start,end]`. For instance, `$.store.book[0,2]` matches the - * first, second, and third elements of the book array of the store + * operator `[i,j,...]`. For instance, `$.store.book[0,2]` matches the + * elements 0 and 2 (the first and third) of the book array of the store * object. * * * Slices of element nodes can be accessed using the slice notation |