We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 413f1e2 commit 0d96595Copy full SHA for 0d96595
1 file changed
README.md
@@ -58,11 +58,11 @@ Options:
58
HDT files can be generated directly in Rust.
59
60
```rust
61
-use rdf2hdt::hdt::buld_hdt;
+use rdf2hdt::build_hdt;
62
63
-let result = build_hdt(
64
- vec!["tests/resources/apple.ttl".to_string()],
65
- "output.hdt",
+let hdt = build_hdt(
+ &["tests/resources/apple.ttl"],
+ "output.hdt",
66
)?;
67
```
68
0 commit comments