We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 123e4ba commit 7285bb4Copy full SHA for 7285bb4
README.md
@@ -200,9 +200,9 @@ escape('/foo'); // => '~1foo'
200
Unescape is performed by first transforming any
201
occurrence of the sequence `'~1'` to `'/'`, and then transforming any
202
occurrence of the sequence `'~0'` to `'~'`. By performing the
203
-substitutions in this order, an implementation avoids the error of
+substitutions in this order, this library avoids the error of
204
turning `'~01'` first into `'~1'` and then into `'/'`, which would be
205
-incorrect (the string '~01' correctly becomes '~1' after transformation).
+incorrect (the string `'~01'` correctly becomes `'~1'` after transformation).
206
207
```js
208
import { unescape } from '@swaggerexpert/json-pointer';
0 commit comments