diff options
| author | Corey Farwell <coreyf@rwell.org> | 2018-11-23 14:09:08 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-23 14:09:08 -0500 |
| commit | ebb1a48b415c1b586bb652d58f3d2078d87f44dd (patch) | |
| tree | f7338faaa66791a15338a938f6a2bf94107de0d1 /src/libstd/primitive_docs.rs | |
| parent | 033cbfec4d3bb23948a99379f8d63b7cfe5eed45 (diff) | |
| parent | 821bad3a5b13862e9fbfae35b446ab91a976a75e (diff) | |
| download | rust-ebb1a48b415c1b586bb652d58f3d2078d87f44dd.tar.gz rust-ebb1a48b415c1b586bb652d58f3d2078d87f44dd.zip | |
Merge branch 'master' into frewsxcv-dyn
Diffstat (limited to 'src/libstd/primitive_docs.rs')
| -rw-r--r-- | src/libstd/primitive_docs.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libstd/primitive_docs.rs b/src/libstd/primitive_docs.rs index c2a16122a0d..48acc1096a6 100644 --- a/src/libstd/primitive_docs.rs +++ b/src/libstd/primitive_docs.rs @@ -22,7 +22,7 @@ /// `bool` implements various traits, such as [`BitAnd`], [`BitOr`], [`Not`], etc., /// which allow us to perform boolean operations using `&`, `|` and `!`. /// -/// [`if`] always demands a `bool` value. [`assert!`], being an important macro in testing, +/// `if` always demands a `bool` value. [`assert!`], being an important macro in testing, /// checks whether an expression returns `true`. /// /// ``` @@ -31,7 +31,6 @@ /// ``` /// /// [`assert!`]: macro.assert.html -/// [`if`]: ../book/first-edition/if.html /// [`BitAnd`]: ops/trait.BitAnd.html /// [`BitOr`]: ops/trait.BitOr.html /// [`Not`]: ops/trait.Not.html @@ -695,7 +694,7 @@ mod prim_str { } /// assert_eq!(tuple.2, 'c'); /// ``` /// -/// For more about tuples, see [the book](../book/first-edition/primitive-types.html#tuples). +/// For more about tuples, see [the book](../book/ch03-02-data-types.html#the-tuple-type). /// /// # Trait implementations /// |
