diff options
| author | Mendess2526 <pedro.mendes.26@gmail.com> | 2019-01-03 19:23:25 +0000 |
|---|---|---|
| committer | Mendess2526 <pedro.mendes.26@gmail.com> | 2019-01-03 19:23:25 +0000 |
| commit | 3fb42cfb7c3932004a9a7295b5e19f28f0f7fff2 (patch) | |
| tree | 73afa72e16ab6f5cab6d0b647f5a9207f9415686 /src/libstd | |
| parent | 2442823ef572a65092fbc46f6975633f983b50b6 (diff) | |
| download | rust-3fb42cfb7c3932004a9a7295b5e19f28f0f7fff2.tar.gz rust-3fb42cfb7c3932004a9a7295b5e19f28f0f7fff2.zip | |
const fn no longer comming soon on const docs
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/keyword_docs.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/keyword_docs.rs b/src/libstd/keyword_docs.rs index 4ca62cca94b..7f1509a92b4 100644 --- a/src/libstd/keyword_docs.rs +++ b/src/libstd/keyword_docs.rs @@ -47,8 +47,8 @@ mod as_keyword { } /// /// Constants must be explicitly typed, unlike with `let` you can't ignore its type and let the /// compiler figure it out. Any constant value can be defined in a const, which in practice happens -/// to be most things that would be reasonable to have a constant (barring `const fn`s, coming -/// soon). For example, you can't have a File as a `const`. +/// to be most things that would be reasonable to have a constant (barring `const fn`s). For +/// example, you can't have a File as a `const`. /// /// The only lifetime allowed in a constant is `'static`, which is the lifetime that encompasses /// all others in a Rust program. For example, if you wanted to define a constant string, it would |
