This website works better with JavaScript.
Explore
Help
Register
Sign In
rust
/
rust-course
mirror of
https://github.com/sunface/rust-course
Watch
5
Star
0
Fork
You've already forked rust-course
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Merge pull request
#1450
from Neutron3529/patch-2
Browse Source
修正Option的排序
pull/1465/head
Sunface
2 months ago
committed by
GitHub
parent
aa4e805cf8
d6a5b83c4e
commit
0fdc6bc85a
No known key found for this signature in database
GPG Key ID:
B5690EEEBB952194
1 changed files
with
1 additions
and
1 deletions
Show all changes
Ignore whitespace when comparing lines
Ignore changes in amount of whitespace
Ignore changes in whitespace at EOL
Show Stats
Download Patch File
Download Diff File
2
src/basic/match-pattern/option.md
Unescape
Escape
View File
@ -4,8 +4,8 @@
```rust
```rust
enum Option
<
T
>
{
enum Option
<
T
>
{
Some(T),
None,
None,
Some(T),
}
}
```
```
Write
Preview
Loading…
Cancel
Save
Reference in new issue
Repository
rust/rust-course
Title
Body
Create Issue