Skip to content

Commit

Permalink
fix JsonLdOptions::new
Browse files Browse the repository at this point in the history
It is defined on JsonLdOption<DefaultLoaderFactory<NoLoader>>,
but using the wrong 'NoLoader', which made it mostly useless.
  • Loading branch information
pchampin committed Feb 27, 2024
1 parent 182c461 commit dc5a046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsonld/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ use json_ld::expansion::Policy;
pub use json_ld::rdf::RdfDirection;
use json_ld::syntax::context::Value;
use json_ld::Loader;
use json_ld::NoLoader;
pub use json_ld::Options;
pub use json_ld::ProcessingMode;
use locspan::Location;
use locspan::Span;
use sophia_iri::Iri;

use crate::loader::NoLoader;
use crate::loader_factory::ClosureLoaderFactory;
use crate::loader_factory::DefaultLoaderFactory;
use crate::loader_factory::LoaderFactory;
Expand Down

0 comments on commit dc5a046

Please sign in to comment.