Skip to content

Commit

Permalink
rust: Remove space from RUSTFLAGS docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Mar 19, 2018
1 parent fe280ca commit add84e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ To access these features, you will need both a relatively recent
Rust nightly and to pass the following as RUSTFLAGS:

```
RUSTFLAGS=-C target-feature=+aes
RUSTFLAGS=-Ctarget-feature=+aes
```

You can configure your `~/.cargo/config` to always pass these flags:

```toml
[build]
rustflags = ["-C", "target-feature=+aes"]
rustflags = ["-Ctarget-feature=+aes"]
```

[aesni]: https://github.com/RustCrypto/block-ciphers
Expand Down
4 changes: 2 additions & 2 deletions rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
//! To access these features, you will need both a relatively recent
//! Rust nightly and to pass the following as RUSTFLAGS:
//!
//! `RUSTFLAGS=-C target-feature=+aes`
//! `RUSTFLAGS=-Ctarget-feature=+aes`
//!
//! You can configure your `~/.cargo/config` to always pass these flags:
//!
//! ```toml
//! [build]
//! rustflags = ["-C", "target-feature=+aes"]
//! rustflags = ["-Ctarget-feature=+aes"]
//! ```
//!
#![crate_name = "miscreant"]
Expand Down

0 comments on commit add84e2

Please sign in to comment.