We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d288a3 commit f2a98baCopy full SHA for f2a98ba
src/crates/using_lib.md
@@ -5,10 +5,10 @@ of its items will then be imported under a module named the same as the library.
5
This module generally behaves the same way as any other module.
6
7
```rust,ignore
8
-use rary::public_function;
+use rary;
9
10
fn main() {
11
- public_function();
+ rary::public_function();
12
13
// Error! `private_function` is private
14
//rary::private_function();
0 commit comments