Skip to content

Commit e4bf643

Browse files
author
Jorge Aparicio
committed
Fix a/an typos
1 parent fb72d7c commit e4bf643

File tree

13 files changed

+18
-18
lines changed

13 files changed

+18
-18
lines changed

RELEASES.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Version 0.10 (April 2014)
6363
documentation index page.
6464
* std: `std::condition` has been removed. All I/O errors are now propagated
6565
through the `Result` type. In order to assist with error handling, a
66-
`try!` macro for unwrapping errors with an early return and an lint for
66+
`try!` macro for unwrapping errors with an early return and a lint for
6767
unused results has been added. See #12039 for more information.
6868
* std: The `vec` module has been renamed to `slice`.
6969
* std: A new vector type, `Vec<T>`, has been added in preparation for DST.

src/doc/guide-lifetimes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ process is called *rooting*.
263263
The previous example demonstrated *rooting*, the process by which the
264264
compiler ensures that managed boxes remain live for the duration of a
265265
borrow. Unfortunately, rooting does not work for borrows of owned
266-
boxes, because it is not possible to have two references to a owned
266+
boxes, because it is not possible to have two references to an owned
267267
box.
268268

269269
For owned boxes, therefore, the compiler will only allow a borrow *if
@@ -462,7 +462,7 @@ of a `f64` as if it were a struct with two fields would be a memory
462462
safety violation.
463463

464464
So, in fact, for every `ref` binding, the compiler will impose the
465-
same rules as the ones we saw for borrowing the interior of a owned
465+
same rules as the ones we saw for borrowing the interior of an owned
466466
box: it must be able to guarantee that the `enum` will not be
467467
overwritten for the duration of the borrow. In fact, the compiler
468468
would accept the example we gave earlier. The example is safe because

src/doc/guide-unsafe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ standard library types, e.g. `Cell` and `RefCell`, that provide inner
5656
mutability by replacing compile time guarantees with dynamic checks at
5757
runtime.
5858

59-
An `&mut` reference has a stronger requirement: when a object has an
59+
An `&mut` reference has a stronger requirement: when an object has an
6060
`&mut T` pointing into it, then that `&mut` reference must be the only
6161
such usable path to that object in the whole program. That is, an
6262
`&mut` cannot alias with any other references.

src/doc/rust.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Comments in Rust code follow the general C++ style of line and block-comment for
161161
with no nesting of block-comment delimiters.
162162

163163
Line comments beginning with exactly _three_ slashes (`///`), and block
164-
comments beginning with a exactly one repeated asterisk in the block-open
164+
comments beginning with exactly one repeated asterisk in the block-open
165165
sequence (`/**`), are interpreted as a special syntax for `doc`
166166
[attributes](#attributes). That is, they are equivalent to writing
167167
`#[doc="..."]` around the body of the comment (this includes the comment
@@ -365,7 +365,7 @@ of integer literal suffix:
365365
give the literal the corresponding machine type.
366366

367367
The type of an _unsuffixed_ integer literal is determined by type inference.
368-
If a integer type can be _uniquely_ determined from the surrounding program
368+
If an integer type can be _uniquely_ determined from the surrounding program
369369
context, the unsuffixed integer literal has that type. If the program context
370370
underconstrains the type, the unsuffixed integer literal's type is `int`; if
371371
the program context overconstrains the type, it is considered a static type
@@ -2184,7 +2184,7 @@ Supported traits for `deriving` are:
21842184
* `Hash`, to iterate over the bytes in a data type.
21852185
* `Rand`, to create a random instance of a data type.
21862186
* `Default`, to create an empty instance of a data type.
2187-
* `Zero`, to create an zero instance of a numeric data type.
2187+
* `Zero`, to create a zero instance of a numeric data type.
21882188
* `FromPrimitive`, to create an instance from a numeric primitive.
21892189
* `Show`, to format a value using the `{}` formatter.
21902190

src/doc/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2980,7 +2980,7 @@ fn main() {
29802980
}
29812981
~~~
29822982

2983-
In general, `use` creates an local alias:
2983+
In general, `use` creates a local alias:
29842984
An alternate path and a possibly different name to access the same item,
29852985
without touching the original, and with both being interchangeable.
29862986

src/etc/zsh/_rust

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ _rustc_opts_lint=(
6868
'unsafe-block[usage of an `unsafe` block]'
6969
'unstable[detects use of #\[unstable\] items (incl. items with no stability attribute)]'
7070
'unused-imports[imports that are never used]'
71-
'unused-must-use[unused result of an type flagged as #\[must_use\]]'
71+
'unused-must-use[unused result of a type flagged as #\[must_use\]]'
7272
"unused-mut[detect mut variables which don't need to be mutable]"
7373
'unused-result[unused result of an expression in a statement]'
7474
'unused-unsafe[unnecessary use of an `unsafe` block]'

src/librustc/back/link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1392,7 +1392,7 @@ fn add_upstream_rust_crates(args: &mut Vec<~str>, sess: &Session,
13921392
// If you opted in to dynamic linking and we decided to emit a
13931393
// static output, you should probably be notified of such an event!
13941394
sess.warn("dynamic linking was preferred, but dependencies \
1395-
could not all be found in an dylib format.");
1395+
could not all be found in a dylib format.");
13961396
sess.warn("linking statically instead, using rlibs");
13971397
add_static_crates(args, sess, tmpdir, deps)
13981398
}

src/librustc/middle/typeck/check/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3639,7 +3639,7 @@ pub fn check_enum_variants(ccx: &CrateCtxt,
36393639
let declty = ty::mk_int_var(ccx.tcx, fcx.infcx().next_int_var_id());
36403640
check_const_with_ty(&fcx, e.span, e, declty);
36413641
// check_expr (from check_const pass) doesn't guarantee
3642-
// that the expression is in an form that eval_const_expr can
3642+
// that the expression is in a form that eval_const_expr can
36433643
// handle, so we may still get an internal compiler error
36443644

36453645
match const_eval::eval_const_expr_partial(ccx.tcx, e) {

src/librustc/middle/typeck/check/regionck.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ fn visit_expr(rcx: &mut Rcx, expr: &ast::Expr) {
419419
}
420420
}
421421
ty::AutoObject(ty::RegionTraitStore(trait_region, _), _, _, _) => {
422-
// Determine if we are casting `expr` to an trait
422+
// Determine if we are casting `expr` to a trait
423423
// instance. If so, we have to be sure that the type of
424424
// the source obeys the trait's region bound.
425425
//
@@ -524,7 +524,7 @@ fn visit_expr(rcx: &mut Rcx, expr: &ast::Expr) {
524524
}
525525

526526
ast::ExprCast(source, _) => {
527-
// Determine if we are casting `source` to an trait
527+
// Determine if we are casting `source` to a trait
528528
// instance. If so, we have to be sure that the type of
529529
// the source obeys the trait's region bound.
530530
//

src/libserialize/json.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -813,13 +813,13 @@ impl<E: ::Encoder<S>, S> Encodable<E, S> for Json {
813813
}
814814

815815
impl Json {
816-
/// Encodes a json value into a io::writer. Uses a single line.
816+
/// Encodes a json value into an io::writer. Uses a single line.
817817
pub fn to_writer(&self, wr: &mut io::Writer) -> EncodeResult {
818818
let mut encoder = Encoder::new(wr);
819819
self.encode(&mut encoder)
820820
}
821821

822-
/// Encodes a json value into a io::writer.
822+
/// Encodes a json value into an io::writer.
823823
/// Pretty-prints in a more readable format.
824824
pub fn to_pretty_writer(&self, wr: &mut io::Writer) -> EncodeResult {
825825
let mut encoder = PrettyEncoder::new(wr);

src/libstd/io/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ pub trait Writer {
10371037
self.write([n])
10381038
}
10391039

1040-
/// Write a i8 (1 byte).
1040+
/// Write an i8 (1 byte).
10411041
fn write_i8(&mut self, n: i8) -> IoResult<()> {
10421042
self.write([n as u8])
10431043
}

src/libstd/ptr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ pub unsafe fn position<T>(buf: *T, f: |&T| -> bool) -> uint {
131131
}
132132
}
133133

134-
/// Create an null pointer.
134+
/// Create a null pointer.
135135
///
136136
/// # Example
137137
///

src/test/run-pass/shape_intrinsic_tag_then_rec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#![feature(managed_boxes)]
1212

1313
// Exercises a bug in the shape code that was exposed
14-
// on x86_64: when there is a enum embedded in an
14+
// on x86_64: when there is an enum embedded in an
1515
// interior record which is then itself interior to
1616
// something else, shape calculations were off.
1717

0 commit comments

Comments
 (0)