The N-Triples serializer outputs canonical N-Triples

pull/668/head
Tpt 10 months ago committed by Thomas Tanon
parent cc41448b18
commit d19947414e
  1. 2
      lib/oxrdfio/src/serializer.rs
  2. 2
      lib/oxttl/src/ntriples.rs

@ -26,7 +26,7 @@ use tokio::io::AsyncWrite;
/// It currently supports the following formats:
/// * [N3](https://w3c.github.io/N3/spec/) ([`RdfFormat::N3`])
/// * [N-Quads](https://www.w3.org/TR/n-quads/) ([`RdfFormat::NQuads`])
/// * [N-Triples](https://www.w3.org/TR/n-triples/) ([`RdfFormat::NTriples`])
/// * [canonical](https://www.w3.org/TR/n-triples/#canonical-ntriples) [N-Triples](https://www.w3.org/TR/n-triples/) ([`RdfFormat::NTriples`])
/// * [RDF/XML](https://www.w3.org/TR/rdf-syntax-grammar/) ([`RdfFormat::RdfXml`])
/// * [TriG](https://www.w3.org/TR/trig/) ([`RdfFormat::TriG`])
/// * [Turtle](https://www.w3.org/TR/turtle/) ([`RdfFormat::Turtle`])

@ -315,7 +315,7 @@ impl LowLevelNTriplesReader {
}
}
/// A [N-Triples](https://www.w3.org/TR/n-triples/) serializer.
/// A [canonical](https://www.w3.org/TR/n-triples/#canonical-ntriples) [N-Triples](https://www.w3.org/TR/n-triples/) serializer.
///
/// Support for [N-Triples-star](https://w3c.github.io/rdf-star/cg-spec/2021-12-17.html#n-triples-star) is available behind the `rdf-star` feature.
///

Loading…
Cancel
Save