1
Fork 0

Fix misspelled comments.

This commit is contained in:
Joseph Crail 2014-08-01 19:40:21 -04:00
parent 292caefb26
commit ad06dfe496
22 changed files with 29 additions and 29 deletions

View file

@ -136,7 +136,7 @@ pub struct Config {
// Extra parameter to run adb on arm-linux-androideabi // Extra parameter to run adb on arm-linux-androideabi
pub adb_path: String, pub adb_path: String,
// Extra parameter to run test sute on arm-linux-androideabi // Extra parameter to run test suite on arm-linux-androideabi
pub adb_test_dir: String, pub adb_test_dir: String,
// status whether android device available or not // status whether android device available or not

View file

@ -325,7 +325,7 @@ fn run_debuginfo_gdb_test(config: &Config, props: &TestProps, testfile: &Path) {
let DebuggerCommands { commands, check_lines, .. } = parse_debugger_commands(testfile, "gdb"); let DebuggerCommands { commands, check_lines, .. } = parse_debugger_commands(testfile, "gdb");
let mut cmds = commands.connect("\n"); let mut cmds = commands.connect("\n");
// compile test file (it shoud have 'compile-flags:-g' in the header) // compile test file (it should have 'compile-flags:-g' in the header)
let compiler_run_result = compile_test(config, props, testfile); let compiler_run_result = compile_test(config, props, testfile);
if !compiler_run_result.status.success() { if !compiler_run_result.status.success() {
fatal_proc_rec("compilation failed!", &compiler_run_result); fatal_proc_rec("compilation failed!", &compiler_run_result);
@ -520,7 +520,7 @@ fn run_debuginfo_lldb_test(config: &Config, props: &TestProps, testfile: &Path)
let config = &mut config; let config = &mut config;
// compile test file (it shoud have 'compile-flags:-g' in the header) // compile test file (it should have 'compile-flags:-g' in the header)
let compile_result = compile_test(config, props, testfile); let compile_result = compile_test(config, props, testfile);
if !compile_result.status.success() { if !compile_result.status.success() {
fatal_proc_rec("compilation failed!", &compile_result); fatal_proc_rec("compilation failed!", &compile_result);

View file

@ -1517,7 +1517,7 @@ pub struct BitPositions<'a> {
next_idx: uint next_idx: uint
} }
/// An iterator combining wo `BitvSet` iterators. /// An iterator combining two `BitvSet` iterators.
pub struct TwoBitPositions<'a> { pub struct TwoBitPositions<'a> {
set: &'a BitvSet, set: &'a BitvSet,
other: &'a BitvSet, other: &'a BitvSet,

View file

@ -119,7 +119,7 @@
//! // 10 | | //! // 10 | |
//! // +---------------+ //! // +---------------+
//! // //! //
//! // The graph is represented as an adjecency list where each index, //! // The graph is represented as an adjacency list where each index,
//! // corresponding to a node value, has a list of outgoing edges. //! // corresponding to a node value, has a list of outgoing edges.
//! // Chosen for it's efficiency. //! // Chosen for it's efficiency.
//! let graph = vec![ //! let graph = vec![

View file

@ -842,7 +842,7 @@ pub mod raw {
/// Create a `String` from a null-terminated *u8 buffer /// Create a `String` from a null-terminated *u8 buffer
/// ///
/// This function is unsafe because we dereference memory until we find the NUL character, /// This function is unsafe because we dereference memory until we find the NUL character,
/// which is not guaranteed to be present. Additionaly, the slice is not checked to see /// which is not guaranteed to be present. Additionally, the slice is not checked to see
/// whether it contains valid UTF-8 /// whether it contains valid UTF-8
pub unsafe fn from_buf(buf: *const u8) -> String { pub unsafe fn from_buf(buf: *const u8) -> String {
let mut len = 0; let mut len = 0;

View file

@ -449,7 +449,7 @@ pub struct UnsafeCell<T> {
} }
impl<T> UnsafeCell<T> { impl<T> UnsafeCell<T> {
/// Construct a new instance of `UnsafeCell` which will wrapp the specified /// Construct a new instance of `UnsafeCell` which will wrap the specified
/// value. /// value.
/// ///
/// All access to the inner value through methods is `unsafe`, and it is /// All access to the inner value through methods is `unsafe`, and it is

View file

@ -118,7 +118,7 @@ extern fn bootstrap_green_task(task: uint, code: *mut (), env: *mut ()) -> ! {
// preserving a handle to the GreenTask down to this point, this // preserving a handle to the GreenTask down to this point, this
// unfortunately must call `GreenTask::convert`. In order to avoid // unfortunately must call `GreenTask::convert`. In order to avoid
// this we could add a `terminate` function to the `Runtime` trait // this we could add a `terminate` function to the `Runtime` trait
// in libstd, but that seems less appropriate since the coversion // in libstd, but that seems less appropriate since the conversion
// method exists. // method exists.
GreenTask::convert(task).terminate(); GreenTask::convert(task).terminate();
} }

View file

@ -769,7 +769,7 @@ impl rtio::RtioUdpSocket for UdpSocket {
// It turns out that there's this nifty MSG_DONTWAIT flag which can be passed to // It turns out that there's this nifty MSG_DONTWAIT flag which can be passed to
// send/recv, but the niftiness wears off once you realize it only works well on // send/recv, but the niftiness wears off once you realize it only works well on
// linux [1] [2]. This means that it's pretty easy to get a nonblocking // linux [1] [2]. This means that it's pretty easy to get a nonblocking
// operation on linux (no flag fidding, no affecting other objects), but not on // operation on linux (no flag fiddling, no affecting other objects), but not on
// other platforms. // other platforms.
// //
// To work around this constraint on other platforms, we end up using the // To work around this constraint on other platforms, we end up using the

View file

@ -311,7 +311,7 @@ impl UnixStream {
} }
} }
// An example I found on microsoft's website used 20 // An example I found on Microsoft's website used 20
// seconds, libuv uses 30 seconds, hence we make the // seconds, libuv uses 30 seconds, hence we make the
// obvious choice of waiting for 25 seconds. // obvious choice of waiting for 25 seconds.
None => { None => {

View file

@ -11,7 +11,7 @@
//! Finds crate binaries and loads their metadata //! Finds crate binaries and loads their metadata
//! //!
//! Might I be the first to welcome you to a world of platform differences, //! Might I be the first to welcome you to a world of platform differences,
//! version requirements, dependency graphs, conficting desires, and fun! This //! version requirements, dependency graphs, conflicting desires, and fun! This
//! is the major guts (along with metadata::creader) of the compiler for loading //! is the major guts (along with metadata::creader) of the compiler for loading
//! crates and resolving dependencies. Let's take a tour! //! crates and resolving dependencies. Let's take a tour!
//! //!
@ -83,7 +83,7 @@
//! 5. Does the target in the metadata agree with the current target? //! 5. Does the target in the metadata agree with the current target?
//! 6. Does the SVH match? (more on this later) //! 6. Does the SVH match? (more on this later)
//! //!
//! If the file answeres `yes` to all these questions, then the file is //! If the file answers `yes` to all these questions, then the file is
//! considered as being *candidate* for being accepted. It is illegal to have //! considered as being *candidate* for being accepted. It is illegal to have
//! more than two candidates as the compiler has no method by which to resolve //! more than two candidates as the compiler has no method by which to resolve
//! this conflict. Additionally, rlib/dylib candidates are considered //! this conflict. Additionally, rlib/dylib candidates are considered
@ -173,7 +173,7 @@
//! ## Loading transitive dependencies //! ## Loading transitive dependencies
//! //!
//! Dealing with same-named-but-distinct crates is not just a local problem, but //! Dealing with same-named-but-distinct crates is not just a local problem, but
//! one that also needs to be dealt with for transitive dependences. Note that //! one that also needs to be dealt with for transitive dependencies. Note that
//! in the letter above `--extern` flags only apply to the *local* set of //! in the letter above `--extern` flags only apply to the *local* set of
//! dependencies, not the upstream transitive dependencies. Consider this //! dependencies, not the upstream transitive dependencies. Consider this
//! dependency graph: //! dependency graph:
@ -660,7 +660,7 @@ impl<'a> Context<'a> {
false false
}); });
// Now that we have an itertor of good candidates, make sure there's at // Now that we have an iterator of good candidates, make sure there's at
// most one rlib and at most one dylib. // most one rlib and at most one dylib.
let mut rlibs = HashSet::new(); let mut rlibs = HashSet::new();
let mut dylibs = HashSet::new(); let mut dylibs = HashSet::new();

View file

@ -269,7 +269,7 @@ pub struct ctxt {
/// Stores the type parameters which were substituted to obtain the type /// Stores the type parameters which were substituted to obtain the type
/// of this node. This only applies to nodes that refer to entities /// of this node. This only applies to nodes that refer to entities
/// param<eterized by type parameters, such as generic fns, types, or /// parameterized by type parameters, such as generic fns, types, or
/// other items. /// other items.
pub item_substs: RefCell<NodeMap<ItemSubsts>>, pub item_substs: RefCell<NodeMap<ItemSubsts>>,

View file

@ -1098,7 +1098,7 @@ impl Context {
Ok(()) Ok(())
} }
/// Non-parellelized version of rendering an item. This will take the input /// Non-parallelized version of rendering an item. This will take the input
/// item, render its contents, and then invoke the specified closure with /// item, render its contents, and then invoke the specified closure with
/// all sub-items which need to be rendered. /// all sub-items which need to be rendered.
/// ///

View file

@ -60,7 +60,7 @@ impl Counts {
} }
#[deriving(Encodable, Decodable, PartialEq, Eq)] #[deriving(Encodable, Decodable, PartialEq, Eq)]
/// A summarized module, which includes total counts and summarized chilcren /// A summarized module, which includes total counts and summarized children
/// modules. /// modules.
pub struct ModuleSummary { pub struct ModuleSummary {
pub name: String, pub name: String,

View file

@ -28,7 +28,7 @@ pub struct StreamWatcher {
// Cache the last used uv_write_t so we don't have to allocate a new one on // Cache the last used uv_write_t so we don't have to allocate a new one on
// every call to uv_write(). Ideally this would be a stack-allocated // every call to uv_write(). Ideally this would be a stack-allocated
// structure, but currently we don't have mappings for all the structures // structure, but currently we don't have mappings for all the structures
// defined in libuv, so we're foced to malloc this. // defined in libuv, so we're forced to malloc this.
last_write_req: Option<Request>, last_write_req: Option<Request>,
blocked_writer: Option<BlockedTask>, blocked_writer: Option<BlockedTask>,

View file

@ -1937,7 +1937,7 @@ impl<T: Eq + Hash<S>, S, H: Hasher<S>> HashSet<T, H> {
/// # Example /// # Example
/// ///
/// This is a slightly silly example where we define the number's /// This is a slightly silly example where we define the number's
/// parity as the equivilance class. It is important that the /// parity as the equivalence class. It is important that the
/// values hash the same, which is why we implement `Hash`. /// values hash the same, which is why we implement `Hash`.
/// ///
/// ```rust /// ```rust

View file

@ -79,7 +79,7 @@ pub fn get_host_addresses(host: &str) -> IoResult<Vec<IpAddr>> {
lookup(Some(host), None, None).map(|a| a.move_iter().map(|i| i.address.ip).collect()) lookup(Some(host), None, None).map(|a| a.move_iter().map(|i| i.address.ip).collect())
} }
/// Full-fleged resolution. This function will perform a synchronous call to /// Full-fledged resolution. This function will perform a synchronous call to
/// getaddrinfo, controlled by the parameters /// getaddrinfo, controlled by the parameters
/// ///
/// # Arguments /// # Arguments

View file

@ -873,7 +873,7 @@ pub fn make_absolute(p: &Path) -> Path {
/// ///
/// let root = Path::new("/"); /// let root = Path::new("/");
/// assert!(os::change_dir(&root)); /// assert!(os::change_dir(&root));
/// println!("Succesfully changed working directory to {}!", root.display()); /// println!("Successfully changed working directory to {}!", root.display());
/// ``` /// ```
pub fn change_dir(p: &Path) -> bool { pub fn change_dir(p: &Path) -> bool {
return chdir(p); return chdir(p);

View file

@ -223,7 +223,7 @@ impl<T: Send> Mutex<T> {
pub fn lock<'a>(&'a self) -> MutexGuard<'a, T> { pub fn lock<'a>(&'a self) -> MutexGuard<'a, T> {
let guard = self.lock.lock(); let guard = self.lock.lock();
// These two accesses are safe because we're guranteed at this point // These two accesses are safe because we're guaranteed at this point
// that we have exclusive access to this mutex. We are indeed able to // that we have exclusive access to this mutex. We are indeed able to
// promote ourselves from &Mutex to `&mut T` // promote ourselves from &Mutex to `&mut T`
let poison = unsafe { &mut *self.failed.get() }; let poison = unsafe { &mut *self.failed.get() };
@ -326,7 +326,7 @@ impl<T: Send + Share> RWLock<T> {
pub fn write<'a>(&'a self) -> RWLockWriteGuard<'a, T> { pub fn write<'a>(&'a self) -> RWLockWriteGuard<'a, T> {
let guard = self.lock.write(); let guard = self.lock.write();
// These two accesses are safe because we're guranteed at this point // These two accesses are safe because we're guaranteed at this point
// that we have exclusive access to this rwlock. We are indeed able to // that we have exclusive access to this rwlock. We are indeed able to
// promote ourselves from &RWLock to `&mut T` // promote ourselves from &RWLock to `&mut T`
let poison = unsafe { &mut *self.failed.get() }; let poison = unsafe { &mut *self.failed.get() };

View file

@ -426,7 +426,7 @@ pub fn require_unique_names(diagnostic: &SpanHandler, metas: &[Gc<MetaItem>]) {
/// not allowed on univariant or zero-variant enums, which have no discriminant. /// not allowed on univariant or zero-variant enums, which have no discriminant.
/// ///
/// If a discriminant type is so specified, then the discriminant will be /// If a discriminant type is so specified, then the discriminant will be
/// present (before fields, if any) with that type; reprensentation /// present (before fields, if any) with that type; representation
/// optimizations which would remove it will not be done. /// optimizations which would remove it will not be done.
pub fn find_repr_attr(diagnostic: &SpanHandler, attr: &Attribute, acc: ReprAttr) pub fn find_repr_attr(diagnostic: &SpanHandler, attr: &Attribute, acc: ReprAttr)
-> ReprAttr { -> ReprAttr {

View file

@ -41,7 +41,7 @@
//! } //! }
//! ``` //! ```
//! //!
//! Other interesting scenarios are whe the item has type parameters or //! Other interesting scenarios are when the item has type parameters or
//! references other non-built-in types. A type definition like: //! references other non-built-in types. A type definition like:
//! //!
//! ```ignore //! ```ignore

View file

@ -4356,7 +4356,7 @@ impl<'a> Parser<'a> {
return self.parse_single_struct_field(Inherited, attrs); return self.parse_single_struct_field(Inherited, attrs);
} }
/// Parse visiility: PUB, PRIV, or nothing /// Parse visibility: PUB, PRIV, or nothing
fn parse_visibility(&mut self) -> Visibility { fn parse_visibility(&mut self) -> Visibility {
if self.eat_keyword(keywords::Pub) { Public } if self.eat_keyword(keywords::Pub) { Public }
else { Inherited } else { Inherited }

View file

@ -225,12 +225,12 @@ pub fn mk_printer(out: Box<io::Writer>, linewidth: uint) -> Printer {
/// 'right' indices denote the active portion of the ring buffer as well as /// 'right' indices denote the active portion of the ring buffer as well as
/// describing hypothetical points-in-the-infinite-stream at most 3N tokens /// describing hypothetical points-in-the-infinite-stream at most 3N tokens
/// apart (i.e. "not wrapped to ring-buffer boundaries"). The paper will switch /// apart (i.e. "not wrapped to ring-buffer boundaries"). The paper will switch
/// between using 'left' and 'right' terms to denote the wrapepd-to-ring-buffer /// between using 'left' and 'right' terms to denote the wrapped-to-ring-buffer
/// and point-in-infinite-stream senses freely. /// and point-in-infinite-stream senses freely.
/// ///
/// There is a parallel ring buffer, 'size', that holds the calculated size of /// There is a parallel ring buffer, 'size', that holds the calculated size of
/// each token. Why calculated? Because for Begin/End pairs, the "size" /// each token. Why calculated? Because for Begin/End pairs, the "size"
/// includes everything betwen the pair. That is, the "size" of Begin is /// includes everything between the pair. That is, the "size" of Begin is
/// actually the sum of the sizes of everything between Begin and the paired /// actually the sum of the sizes of everything between Begin and the paired
/// End that follows. Since that is arbitrarily far in the future, 'size' is /// End that follows. Since that is arbitrarily far in the future, 'size' is
/// being rewritten regularly while the printer runs; in fact most of the /// being rewritten regularly while the printer runs; in fact most of the
@ -270,7 +270,7 @@ pub struct Printer {
left: uint, left: uint,
/// Index of right side of input stream /// Index of right side of input stream
right: uint, right: uint,
/// Ring-buffr stream goes through /// Ring-buffer stream goes through
token: Vec<Token> , token: Vec<Token> ,
/// Ring-buffer of calculated sizes /// Ring-buffer of calculated sizes
size: Vec<int> , size: Vec<int> ,