@@ -80,7 +80,7 @@ people avoid `Cell` and `Rc` when not needed. Explicit opt-in
80
80
threatens that future, however, because fewer types will implement
81
81
` Share ` , even if they are in fact threadsafe.
82
82
83
- With respect to extensibility, it is partiularly worrisome that if a
83
+ With respect to extensibility, it is particularly worrisome that if a
84
84
library forgets to implement ` Send ` or ` Share ` , downstream clients are
85
85
stuck. They cannot, for example, use a newtype wrapper, because it
86
86
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
123
123
` Safe ` or ` Share ` are implemented.
124
124
125
125
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
127
127
consider this acceptable, since those two traits are intimately tied
128
128
to the core Rust type system, unlike ` Send ` and ` Share ` .
129
129
@@ -198,7 +198,7 @@ that `T` implements `Foo`. This allows recursive types like
198
198
struct List<T> { data: T, next: Option<List<T>> }
199
199
200
200
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
202
202
` TypeContents ` code does.)
203
203
204
204
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.
367
367
To be more specific, imagine that library A wishes to define a
368
368
` Untainted ` trait, and it specifically opts out of ` Untainted ` for
369
369
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
371
371
library B that defines a nifty replacement for ` Vector ` ,
372
372
` NiftyVector ` . Finally, some library C wishes to use a
373
373
` NiftyVector<uint> ` , which should not be considered tainted, because
374
374
it doesn't reference any tainted strings. However, ` NiftyVector<uint> `
375
375
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
377
377
trait, of course, due to our coherence rules, but often they can be
378
378
overcome with new types. Not so with ` Send ` and ` Share ` .
379
379
380
380
#### Other use cases
381
381
382
382
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.
384
384
This is not included in the * Detailed design* section of the RFC
385
385
because these traits generally concern other features and would be
386
386
added under RFCs of their own.
0 commit comments