rdflib 2.3.0-d60f1a34 → 2.3.1-233cf569

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -65,7 +65,7 @@ npm install --save rdflib
65
65
 
66
66
  ## Serializer flags
67
67
 
68
- The Turtle/N3/JSON‑LD serializers accept an optional flags string to tweak output formatting and abbreviation behavior.
68
+ The Turtle/N3/JSON‑LD serializers accept an optional `flags` string to tweak output formatting and abbreviation behavior.
69
69
 
70
70
  - Pass flags via the options argument to `serialize(...)`:
71
71
 
@@ -86,7 +86,7 @@ Common flags used internally (you can combine them, e.g. `'o k'`):
86
86
  - `d e i n p r s t u x` – used for N-Triples/N-Quads to simplify output
87
87
  - `dr` – used with JSON‑LD conversion (no default, no relative prefix)
88
88
  - `o` – new: do not abbreviate to a prefixed name when the local part contains a dot. This keeps IRIs like
89
- `http://foo.test/ns/subject.example` in `<...>` form instead of `ns:subject.example`.
89
+ `http://example.org/ns/subject.example` in `<...>` form instead of `ns:subject.example`.
90
90
 
91
91
  Notes:
92
92