Skip to content

Commit ee6976f

Browse files
committed
Improve the README.
1 parent 36f2119 commit ee6976f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
- Implements a comprehensive set of environment variable getters for
1313
various platforms, programming languages, and tools.
14-
- Provides a wide range of varsets (variable sets), including:
14+
- Provides a wide range of varsets (variable sets), including for:
1515
AWS, Cargo, Conda, CUDA, Docker, Git, Go, Homebrew, Java,
1616
Locale, macOS, NEAR, Node.js, OpenSSL, POSIX, Proxy,
1717
Python, Ruby, Rust, SSH, Windows, and XDG.
@@ -32,14 +32,14 @@
3232
cargo add getenv
3333
```
3434

35-
### Installation via Cargo (with all features enabled)
35+
### Installation in `Cargo.toml` (with all features enabled)
3636

3737
```toml
3838
[dependencies]
39-
getenv = 0.1
39+
getenv = "0.1"
4040
```
4141

42-
### Installation via Cargo (with only specific features enabled)
42+
### Installation in `Cargo.toml` (with only specific features enabled)
4343

4444
```toml
4545
[dependencies]
@@ -59,8 +59,8 @@ use getenv::*;
5959
```rust
6060
use getenv::aws::*;
6161

62-
println!("AWS_ACCESS_KEY_ID={:?}", aws_access_key_id())
63-
println!("AWS_SECRET_ACCESS_KEY={:?}", aws_secret_access_key())
62+
println!("AWS_ACCESS_KEY_ID={:?}", aws_access_key_id());
63+
println!("AWS_SECRET_ACCESS_KEY={:?}", aws_secret_access_key());
6464
```
6565

6666
## 📚 Reference

0 commit comments

Comments
 (0)