Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
rust
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
redox-os
rust
Commits
79f052bd
Commit
79f052bd
authored
Jul 24, 2020
by
Alexis Bourget
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix nits
parent
b36479fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/libstd/keyword_docs.rs
src/libstd/keyword_docs.rs
+3
-3
No files found.
src/libstd/keyword_docs.rs
View file @
79f052bd
...
...
@@ -1005,11 +1005,11 @@ mod pub_keyword {}
/// Some(n) => println!("Hello, {}", n),
/// _ => println!("Hello, world"),
/// }
/// // ... and now unavailable.
/// // ... and
is
now unavailable.
/// println!("Hello again, {}", maybe_name.unwrap_or("world".into()));
/// ```
///
/// Using the `ref` keyword, the value is only borrowed, not moved, making
/// Using the `ref` keyword, the value is only borrowed, not moved, making
it
/// available for use after the [`match`] statement:
///
/// ```
...
...
@@ -1019,7 +1019,7 @@ mod pub_keyword {}
/// Some(ref n) => println!("Hello, {}", n),
/// _ => println!("Hello, world"),
/// }
/// // ...
and it's available here
!
/// // ...
so it's available here
!
/// println!("Hello again, {}", maybe_name.unwrap_or("world".into()));
/// ```
///
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment