Skip to content

Commit ca30b2a

Browse files
authored
Fix changed links ot RFCs (#46)
1 parent bb3e3b4 commit ca30b2a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ A PHP implementation for finding unordered diff between two `JSON` documents.
1414
* To simplify changes review between two `JSON` files you can use a standard `diff` tool on rearranged pretty-printed `JSON`.
1515
* To detect breaking changes by analyzing removals and changes from original `JSON`.
1616
* To keep original order of object sets (for example `swagger.json` [parameters](https://swagger.io/docs/specification/describing-parameters/) list).
17-
* To [make](#getpatch) and [apply](#jsonpatch) JSON Patches, specified in [RFC 6902](http://tools.ietf.org/html/rfc6902) from the IETF.
18-
* To [make](#getmergepatch) and [apply](#jsonmergepatch) JSON Merge Patches, specified in [RFC 7386](https://tools.ietf.org/html/rfc7386) from the IETF.
19-
* To retrieve and modify data by [JSON Pointer](http://tools.ietf.org/html/rfc6901).
17+
* To [make](#getpatch) and [apply](#jsonpatch) JSON Patches, specified in [RFC 6902](https://datatracker.ietf.org/doc/html/rfc6902) from the IETF.
18+
* To [make](#getmergepatch) and [apply](#jsonmergepatch) JSON Merge Patches, specified in [RFC 7386](https://datatracker.ietf.org/doc/html/rfc7386) from the IETF.
19+
* To retrieve and modify data by [JSON Pointer](https://datatracker.ietf.org/doc/html/rfc6901).
2020
* To recursively replace by JSON value.
2121

2222
## Installation
@@ -76,7 +76,7 @@ Returns total number of differences
7676
Returns [`JsonPatch`](#jsonpatch) of difference
7777

7878
#### `getMergePatch`
79-
Returns [JSON Merge Patch](https://tools.ietf.org/html/rfc7386) value of difference
79+
Returns [JSON Merge Patch](https://datatracker.ietf.org/doc/html/rfc7386) value of difference
8080

8181
#### `getRearranged`
8282
Returns new value, rearranged with original order.

0 commit comments

Comments
 (0)