Skip to content

Commit 0f423c1

Browse files
committed
---
yaml --- r: 229010 b: refs/heads/try c: bdc62e0 h: refs/heads/master v: v3
1 parent 076357e commit 0f423c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: aca2057ed5fb7af3f8905b2bc01f72fa001c35c8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: d66c67be784a4d0678f60158adb9e76c6b58d9c3
4+
refs/heads/try: bdc62e009cc5b62fcf356e7977c6397296b2077d
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/references.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ This has no semantic consequences, but is probably a more useful notion when
138138
verifying the soundness of a construct.)
139139

140140
That's it. Super simple right? Except for the fact that it took us two pages
141-
to define all of the terms in that defintion. You know: Super. Simple.
141+
to define all of the terms in that definition. You know: Super. Simple.
142142

143143
Actually it's a bit more complicated than that. In addition to references,
144144
Rust has *raw pointers*: `*const T` and `*mut T`. Raw pointers have no inherent

branches/try/working-with-unsafe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Trickier than that is when we get into actual statefulness. Consider a simple
4444
implementation of `Vec`:
4545

4646
```rust
47-
// Note this defintion is insufficient. See the section on lifetimes.
47+
// Note this definition is insufficient. See the section on lifetimes.
4848
pub struct Vec<T> {
4949
ptr: *mut T,
5050
len: usize,

0 commit comments

Comments
 (0)