Skip to content

Commit 59b43e0

Browse files
committed
Fix typos in RFCs 751-1000
1 parent 700c3ba commit 59b43e0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

text/0769-sound-generic-drop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# History
66

7-
2015.09.18 -- This RFC was partially superceded by [RFC 1238], which
7+
2015.09.18 -- This RFC was partially superseded by [RFC 1238], which
88
removed the parametricity-based reasoning in favor of an attribute.
99

1010
[RFC 1238]: https://github.com/rust-lang/rfcs/blob/master/text/1238-nonparametric-dropck.md

text/0953-op-assign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Implement these traits for the primitive numeric types *without* overloading,
4242
i.e. only `impl AddAssign<i32> for i32 { .. }`.
4343

4444
Add an `op_assign` feature gate. When the feature gate is enabled, the compiler
45-
will consider these traits when typecheking `a += b`. Without the feature gate
45+
will consider these traits when typechecking `a += b`. Without the feature gate
4646
the compiler will enforce that `a` and `b` must be primitives of the same
4747
type/category as it does today.
4848

text/0980-read-exact.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The following method is added to the `Read` trait:
5656
fn read_exact(&mut self, buf: &mut [u8]) -> Result<()>;
5757
```
5858

59-
Aditionally, a default implementation of this method is provided:
59+
Additionally, a default implementation of this method is provided:
6060

6161
``` rust
6262
fn read_exact(&mut self, mut buf: &mut [u8]) -> Result<()> {

0 commit comments

Comments
 (0)