diff options
| -rw-r--r-- | azalea-language/src/lib.rs | 2 | ||||
| -rw-r--r-- | azalea/src/lib.rs | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/azalea-language/src/lib.rs b/azalea-language/src/lib.rs index f54de3cb..b9905e54 100644 --- a/azalea-language/src/lib.rs +++ b/azalea-language/src/lib.rs @@ -1,3 +1,5 @@ +//! Translate Minecraft strings from their id. + use lazy_static::lazy_static; use std::io::Read; use std::path::Path; diff --git a/azalea/src/lib.rs b/azalea/src/lib.rs index 20bab405..b2d54d63 100644 --- a/azalea/src/lib.rs +++ b/azalea/src/lib.rs @@ -10,9 +10,10 @@ //! First, install Rust nightly with `rustup install nightly` and `rustup //! default nightly`. //! -//! Then, add one of the following lines to your Cargo.toml.\ +//! Then, add one of the following lines to your Cargo.toml: +//! //! Latest bleeding-edge version: -//! `azalea = { git="https://github.com/mat-1/Cargo.toml" }` +//! `azalea = { git="https://github.com/mat-1/Cargo.toml" }`\ //! Latest "stable" release: //! `azalea = "0.3"` //! |
