Skip to content

Commit 0e2baed

Browse files
committed
Fix minor typos
1 parent cbabda0 commit 0e2baed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+85
-85
lines changed

text/0019-opt-in-builtin-traits.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ people avoid `Cell` and `Rc` when not needed. Explicit opt-in
8080
threatens that future, however, because fewer types will implement
8181
`Share`, even if they are in fact threadsafe.
8282

83-
With respect to extensibility, it is partiularly worrisome that if a
83+
With respect to extensibility, it is particularly worrisome that if a
8484
library forgets to implement `Send` or `Share`, downstream clients are
8585
stuck. They cannot, for example, use a newtype wrapper, because it
8686
would be illegal to implement `Send` on the newtype. This implies that
@@ -123,7 +123,7 @@ makes them *less* built-in, but still requires custom logic in the
123123
`Safe` or `Share` are implemented.
124124

125125
After the changes I propose, the only traits which would be
126-
specicially understood by the compiler are `Copy` and `Sized`. I
126+
specifically understood by the compiler are `Copy` and `Sized`. I
127127
consider this acceptable, since those two traits are intimately tied
128128
to the core Rust type system, unlike `Send` and `Share`.
129129

@@ -198,7 +198,7 @@ that `T` implements `Foo`. This allows recursive types like
198198
struct List<T> { data: T, next: Option<List<T>> }
199199

200200
to be checked successfully. Otherwise, we would recursive infinitely.
201-
(This procedure is directly analagous to what the existing
201+
(This procedure is directly analogous to what the existing
202202
`TypeContents` code does.)
203203

204204
Note that there exist types that expand to an infinite tree of types.
@@ -367,20 +367,20 @@ traits. In effect, opt-in is anti-modular in its own way.
367367
To be more specific, imagine that library A wishes to define a
368368
`Untainted` trait, and it specifically opts out of `Untainted` for
369369
some base set of types. It then wishes to have routines that only
370-
operate on `Untained` data. Now imagine that there is some other
370+
operate on `Untainted` data. Now imagine that there is some other
371371
library B that defines a nifty replacement for `Vector`,
372372
`NiftyVector`. Finally, some library C wishes to use a
373373
`NiftyVector<uint>`, which should not be considered tainted, because
374374
it doesn't reference any tainted strings. However, `NiftyVector<uint>`
375375
does not implement `Untainted` (nor can it, without either library A
376-
or libary B knowing about one another). Similar problems arise for any
376+
or library B knowing about one another). Similar problems arise for any
377377
trait, of course, due to our coherence rules, but often they can be
378378
overcome with new types. Not so with `Send` and `Share`.
379379

380380
#### Other use cases
381381

382382
Part of the design involves making space for other use cases. I'd like
383-
to skech out how some of those use cases can be implemented briefly.
383+
to sketch out how some of those use cases can be implemented briefly.
384384
This is not included in the *Detailed design* section of the RFC
385385
because these traits generally concern other features and would be
386386
added under RFCs of their own.

text/0040-libstd-facade.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ many locations.
8181
#### Strings
8282

8383
In a post-DST world, the string type will actually be a library-defined type,
84-
`Str` (or similarly named). Strings will no longer be a lanuage feature or a
84+
`Str` (or similarly named). Strings will no longer be a language feature or a
8585
language-defined type. This implies that any methods on strings must be in the
8686
same crate that defined the `Str` type, or done through extension traits.
8787

@@ -383,7 +383,7 @@ various environments seems beneficial.
383383
etc. This route has may have the problem of "multiple standard libraries"
384384
in that code compatible with the "libc libstd" is not necessarily compatible
385385
with the "no libc libstd". Asserting that a crate is compatible with multiple
386-
profiles would involve requiring multiple compliations.
386+
profiles would involve requiring multiple compilations.
387387

388388
* Removing libstd entirely. If the standard library is simply a facade, the
389389
compiler could theoretically only inject a select number of crates into the

text/0048-traits.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ we find we need more type information to proceed with some
224224
type-overloaded operation, rather than reporting an error we can try
225225
and resolve pending constraints. If that helps give more information,
226226
we can carry on. Once we reach the end of the function, we must then
227-
resolve all pending constriants that have not yet been resolved for
227+
resolve all pending constraints that have not yet been resolved for
228228
some other reason.
229229

230230
Note that there is some interaction with the distinction between input
@@ -527,7 +527,7 @@ slightly modified example:
527527
As before, we'll start out with a type of `Monster`, but this type the
528528
method `move_to_room()` has a receiver type of `Gc<Monster>`. This
529529
doesn't match cases 1, 2, or 3, so we proceed to case 4 and *unwind*
530-
by one adustment. Since the most recent adjustment was to deref from
530+
by one adjustment. Since the most recent adjustment was to deref from
531531
`Gc<Monster>` to `Monster`, we are left with a type of
532532
`Gc<Monster>`. We now search again. This time, we match case 1. So the
533533
final result is `Mob::move_to_room(victim, room)`. This last case is
@@ -660,7 +660,7 @@ extent.
660660
## The "resolve" algorithm
661661

662662
The basis for the coherence check, method lookup, and vtable lookup
663-
algoritms is the same function, called *RESOLVE*. The basic idea is
663+
algorithms is the same function, called *RESOLVE*. The basic idea is
664664
that it takes a set of obligations and tries to resolve them. The result
665665
is four sets:
666666

text/0049-match-arm-attributes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Allow attributes on match arms.
99
# Motivation
1010

1111
One sometimes wishes to annotate the arms of match statements with
12-
attributes, for example with conditional complilation `#[cfg]`s or
12+
attributes, for example with conditional compilation `#[cfg]`s or
1313
with branch weights (the latter is the most important use).
1414

1515
For the conditional compilation, the work-around is duplicating the

text/0068-const-unsafe-pointers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ the language, `const`.
104104

105105
* How much can the compiler help out when coercing `&mut T` to `*mut T`? As
106106
previously stated, the source pointer `&mut T` is consumed during the
107-
coerction (it's already a linear type), but this can lead to some unexpected
107+
coercion (it's already a linear type), but this can lead to some unexpected
108108
results:
109109

110110
extern {

text/0092-struct-grammar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ literals to not require the `:` (e.g., if we allow empty structs to be written
1818
with braces, or if we allow struct literals to unify field names to local
1919
variable names, as has been suggested in the past and which we currently do for
2020
struct literal patterns). We should also be able to give better error messages
21-
today if users make these mistakes. More worringly, we might come up with some
21+
today if users make these mistakes. More worryingly, we might come up with some
2222
language feature in the future which is not predictable now and which breaks
2323
with the current system.
2424

text/0100-partial-cmp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Summary
66

7-
Add a `partial_cmp` method to `PartialOrd`, analagous to `cmp` in `Ord`.
7+
Add a `partial_cmp` method to `PartialOrd`, analogous to `cmp` in `Ord`.
88

99
# Motivation
1010

@@ -93,7 +93,7 @@ should be. It would also require more work to implement `PartialOrd` once the
9393
currently planned `cmp` reform has finished as noted above.
9494

9595
`partial_cmp` could just be called `cmp`, but it seems like UFCS would need to
96-
be implemented first for that to be workrable.
96+
be implemented first for that to be workable.
9797

9898
# Unresolved questions
9999

text/0109-remove-crate-id.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ Note that both the `<version>` and the `<hash>` are missing by default. The
7272
and the `<hash>` was removed to make the output filename predictable.
7373

7474
The three original goals can still be satisfied with this simplified naming
75-
scheme. As explained in th enext section, the compiler's "glob pattern" when
75+
scheme. As explained in the next section, the compiler's "glob pattern" when
7676
searching for a crate named `foo` will be `libfoo*.rlib`, which will help
7777
rationalize some of these conclusions.
7878

7979
* Libraries of the same name can exist next to one another because they can be
8080
manually renamed to have extra data after the `libfoo`, such as the version.
8181
* Libraries of the same name and version, but different source, can also exist
82-
by modifing what comes after `libfoo`, such as including a hash.
82+
by modifying what comes after `libfoo`, such as including a hash.
8383
* Rust does not need to occupy a privileged namespace as the default rust
8484
installation would include hashes in all the filenames as necessary. More on
8585
this later.
@@ -148,7 +148,7 @@ not compile a crate with two different versions of an upstream crate.
148148
Additionally, cargo could not substitute `libfast-json` for `libslow-json` at
149149
compile time (assuming they have the same API).
150150

151-
To accomodate an "expert mode" in rustc, the compiler will grow a new command
151+
To accommodate an "expert mode" in rustc, the compiler will grow a new command
152152
line flag of the form:
153153

154154
```

text/0115-rm-integer-fallback.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ enum Color { Red = 0, Green = 1, Blue = 2 }
5151
```
5252

5353
Currently, an unsuffixed integer defaults to `int`. Instead, we will
54-
only require enum descriminants primitive integers of unspecified
54+
only require enum discriminants primitive integers of unspecified
5555
type; assigning an integer to an enum will behave as if casting from
5656
from the type of the integer to an unsigned integer with the size of
5757
the enum discriminant.

text/0130-box-not-special.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Currently the `Box<T>` type is special-cased and converted to the old
1212
`~T` internally. This is mostly invisible to the user, but it shows up
1313
in some places that give special treatment to `Box<T>`. This RFC is
1414
specifically concerned with the fact that the borrow checker has
15-
greater precision when derefencing `Box<T>` vs other smart pointers
15+
greater precision when dereferencing `Box<T>` vs other smart pointers
1616
that rely on the `Deref` traits. Unlike the other kinds of special
1717
treatment, we do not currently have a plan for how to extend this
1818
behavior to all smart pointer types, and hence we would like to remove
@@ -103,7 +103,7 @@ treatment of box to other smart pointer types:
103103
if the optimization is not performed it affects what programs can
104104
successfully type check. (Naturally it is also observable.)
105105

106-
2. Some sort of unsafe deref trait that acknolwedges possibliity of
106+
2. Some sort of unsafe deref trait that acknowledges possibility of
107107
other pointers into the referent. Unappealing because the problem
108108
is not that bad as to require unsafety.
109109

text/0132-ufcs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,11 @@ rejection are listed:
173173

174174
module::type::(Trait::member) <module::type as Trait>::member
175175
--> semantics of parentheses considered too subtle
176-
--> cannot accomodate types that are not paths, like `[int]`
176+
--> cannot accommodate types that are not paths, like `[int]`
177177

178178
(type: Trait)::member <type as Trait>::member
179179
--> complicated to parse
180-
--> cannot accomodate types that are not paths, like `[int]`
180+
--> cannot accommodate types that are not paths, like `[int]`
181181

182182
... (I can't remember all the rest)
183183

@@ -209,4 +209,4 @@ to try and change the question:
209209
object type and then `ToStr` could be used as syntactic sugar for a
210210
type parameter. But there exists a lot of precedent for the current
211211
approach and hence I think this is likely a bad idea (not to mention
212-
that it'a a drastic change).
212+
that it's a drastic change).

text/0135-where.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ This is unfortunately somewhat ambiguous, since a bound like `T:Eq`
444444
could either be declared a type parameter `T` or as a condition that
445445
the (existing) type `T` implement `Eq`.
446446

447-
**Use a colon intead of the keyword.** There is some precedent for
447+
**Use a colon instead of the keyword.** There is some precedent for
448448
this from the type state days. Unfortunately, it doesn't work with
449449
traits due to the supertrait list, and it also doesn't look good with
450450
the use of `:` as a trait-bound separator:

text/0169-use-path-as-id.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ mod new_code {
4444
There are two benefits we can see by comparing `mod old_code` and `mod
4545
new_code`:
4646

47-
* As alluded to above, now all of the imported identfifiers are on
47+
* As alluded to above, now all of the imported identifiers are on
4848
the right-hand side of the block of view items.
4949

5050
* Additionally, the left-hand side looks much more regular, since one
@@ -194,7 +194,7 @@ extern crate old_name as new_name;
194194
```
195195

196196
I have no opinion on whether this should be added or not. Arguably
197-
this choice is orthgonal to the goals of this RFC (since, if this is a
197+
this choice is orthogonal to the goals of this RFC (since, if this is a
198198
good idea, it could just as well be implemented with the `=` syntax).
199199
Perhaps it should just be filed as a separate RFC on its own.
200200

text/0212-restore-int-fallback.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ the major calling conventions), it's faster than 64-bit integers in
125125
arithmetic today, and is superior in memory usage while still providing
126126
a reasonable range of possible values.
127127

128-
To expand on the perfomance argument: `i32` obviously uses half of the
128+
To expand on the performance argument: `i32` obviously uses half of the
129129
memory of `i64` meaning half the memory bandwidth used, half as much
130130
cache consumption and twice as much vectorization – additionally
131131
arithmetic (like multiplication and division) is faster on some of the

text/0213-defaulted-type-params.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ can only be referenced from within a fn body.
252252
### References to generic impls
253253

254254
Users never explicitly "reference" an impl. Rather, the trait matching
255-
system implicitly instantaites impls as part of trait matching. This
255+
system implicitly instantiates impls as part of trait matching. This
256256
implies that all type parameters are always instantiated with type
257257
variables. These type variables are assigned fallbacks according to
258258
the defaults given.

text/0235-collections-conventions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1367,7 +1367,7 @@ fn partitioned(&self, f: |&T| -> bool) -> (Vec<T>, Vec<T>);
13671367
These two functions transform a vector/slice into a pair of vectors, based on a
13681368
"partitioning" function that says which of the two vectors to place elements
13691369
into. The `partition` variant works by moving elements of the vector, while
1370-
`paritioned` clones elements.
1370+
`partitioned` clones elements.
13711371

13721372
There are a few unfortunate aspects of an API like this one:
13731373

text/0243-trait-based-exception-handling.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ associated block. If no exception is thrown, then the result is
122122
`Ok(v)` where `v` is the value of the block. Otherwise, if an
123123
exception is thrown, then the result is `Err(e)`. Note that unlike
124124
other languages, a `catch` block always catches all errors, and they
125-
must all be coercable to a single type, as a `Result` only has a
125+
must all be coercible to a single type, as a `Result` only has a
126126
single `Err` type. This dramatically simplifies thinking about the
127127
behavior of exception-handling code.
128128

@@ -262,7 +262,7 @@ a distinct motivation, and we should evaluate them independently.
262262

263263
# Unresolved questions
264264

265-
These questions should be satisfactorally resolved before stabilizing the
265+
These questions should be satisfactorily resolved before stabilizing the
266266
relevant features, at the latest.
267267

268268
## Optional `match` sugar

text/0339-statically-sized-literals.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Minor breakage:
162162
fn main() {
163163
let s = "Hello";
164164
fn f(arg: &str) {}
165-
f(s); // Will require explicit slicing f(s[]) or implicit DST coersion from reference f(&s)
165+
f(s); // Will require explicit slicing f(s[]) or implicit DST coercion from reference f(&s)
166166
}
167167
```
168168

text/0344-conventions-galore.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ easy to draw the wrong conclusion.
265265
This RFC proposes to use a `Prelude` suffix for these basic traits. Since the
266266
traits are, in fact, included in the prelude their names do not generally appear
267267
in Rust programs. Therefore, choosing a longer and clearer name will help avoid
268-
confusion about the intent of these traits, and will avoid namespace polution.
268+
confusion about the intent of these traits, and will avoid namespace pollution.
269269

270270
(There is one important drawback in today's Rust: associated functions in these
271271
traits cannot yet be called directly on the types implementing the traits. These

text/0369-num-reform.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
This RFC is preparation for API stabilization for the `std::num` module. The
88
proposal is to finish the simplification efforts started in
9-
[@bjz's reversal of the numerics hierarcy](https://github.com/rust-lang/rust/issues/10387).
9+
[@bjz's reversal of the numerics hierarchy](https://github.com/rust-lang/rust/issues/10387).
1010

1111
Broadly, the proposal is to collapse the remaining numeric hierarchy
1212
in `std::num`, and to provide only limited support for generic
@@ -45,7 +45,7 @@ building such a hierarchy within `libstd` was misguided:
4545
The `std::num` module has thus been slowly migrating *away* from a large trait
4646
hierarchy toward a simpler one providing just APIs for primitive data types:
4747
this is
48-
[@bjz's reversal of the numerics hierarcy](https://github.com/rust-lang/rust/issues/10387).
48+
[@bjz's reversal of the numerics hierarchy](https://github.com/rust-lang/rust/issues/10387).
4949

5050
Along side this effort, there are already external numerics packages like
5151
[@bjz's num-rs](https://github.com/bjz/num-rs).
@@ -233,7 +233,7 @@ pub trait Int: Copy + Clone + PartialOrd + PartialEq
233233
// Deprecated:
234234
// fn is_zero(&self) -> bool;
235235

236-
// Bit twidling
236+
// Bit twiddling
237237
fn count_ones(self) -> uint;
238238
fn count_zeros(self) -> uint { ... }
239239
fn leading_zeros(self) -> uint;

text/0380-stabilize-std-fmt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ some form of "write error" happened, but conveys no extra information.
224224
This API has a number of oddities:
225225

226226
* The type `Formatter` has inherent `write` and `write_fmt` methods to be used
227-
in conjuction with the `write!` macro return an instance of `fmt::Result`.
227+
in conjunction with the `write!` macro return an instance of `fmt::Result`.
228228
* The `Formatter` type also implements the `std::io::Writer` trait in order to
229229
be able to pass around a `&mut Writer`.
230230
* This relies on the duck-typing of macros and for the inherent `write_fmt`

text/0385-module-system-cleanup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ mod foo {
9090

9191
```
9292

93-
While its generally not neccessary to export a extern library directly, the need for it does arise
93+
While its generally not necessary to export a extern library directly, the need for it does arise
9494
occasionally during refactorings of huge crate collections,
9595
generally if a public module gets turned into its own crate.
9696

text/0390-enum-namespacing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ bootstrapping.
245245
After a new stage 0 snapshot, the standard library will be ported and resolve
246246
will be updated to remove variant definitions in the flat namespace. This will
247247
happen as one atomic PR to keep the implementation phase as compressed as
248-
possible. In addition, if unforseen problems arise during this set of work, we
248+
possible. In addition, if unforeseen problems arise during this set of work, we
249249
can roll back the initial commit and put the change off until after 1.0, with
250250
only a small pre-1.0 change required. This initial conversion will focus on
251251
making the minimal set of changes required to port the compiler and standard
@@ -306,7 +306,7 @@ decidedly worse than not having to worry about fallback at all.
306306

307307
Earlier iterations of namespaced enum proposals suggested preserving flat enums
308308
and adding `enum mod` syntax for namespaced enums. However, variant namespacing
309-
isn't a large enough enough difference for the additon of a second way to
309+
isn't a large enough enough difference for the addition of a second way to
310310
define enums to hold its own weight as a language feature. In addition, it
311311
would simply cause confusion, as library authors need to decide which one they
312312
want to use, and library consumers need to double check which place they can

text/0403-cargo-build-command.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ It is illegal to define `links` without also defining `build`.
167167
A number of native dependencies have various dependencies depending on what
168168
platform they're building for. For example, libcurl does not depend on OpenSSL
169169
on Windows, but it is a common dependency on unix-based systems. To this end,
170-
Cargo will gain support for platform-specific dependencies, solving constriant 7
170+
Cargo will gain support for platform-specific dependencies, solving constraint 7
171171
above:
172172

173173
```toml
@@ -258,7 +258,7 @@ separate set of dependencies solves a number of constraints:
258258

259259
* When cross-compiling, the build tool as well as all of its dependencies are
260260
required to be built for the host architecture instead of the target
261-
architecture. A clear deliniation will indicate precisely what dependencies
261+
architecture. A clear delineation will indicate precisely what dependencies
262262
need to be built for the host architecture.
263263
* Common packages, such as one to build `cmake`-based dependencies, can develop
264264
conventions around filesystem hierarchy formats to require minimum

0 commit comments

Comments
 (0)