Fix some spelling errors.

This commit is contained in:
Huon Wilson 2014-12-18 15:10:37 -08:00
parent 62fb41c32b
commit 832c3e3cd7
7 changed files with 11 additions and 11 deletions

View File

@ -39,7 +39,7 @@ impl Ascii {
self.chr
}
/// Deprecated: use `as_byte` isntead.
/// Deprecated: use `as_byte` instead.
#[deprecated = "use as_byte"]
pub fn to_byte(self) -> u8 {
self.as_byte()
@ -52,7 +52,7 @@ impl Ascii {
self.chr as char
}
/// Deprecated: use `as_char` isntead.
/// Deprecated: use `as_char` instead.
#[deprecated = "use as_char"]
pub fn to_char(self) -> char {
self.as_char()

View File

@ -547,7 +547,7 @@ impl<T: Send> Sender<T> {
/// so it is possible for a send to succeed (the other end is alive), but
/// then the other end could immediately disconnect.
///
/// The purpose of this functionality is to propagate panicks among tasks.
/// The purpose of this functionality is to propagate panics among tasks.
/// If a panic is not desired, then consider using the `send_opt` method
#[experimental = "this function is being considered candidate for removal \
to adhere to the general guidelines of rust"]
@ -790,7 +790,7 @@ impl<T: Send> Receiver<T> {
///
/// Similar to channels, this method will trigger a task panic if the
/// other end of the channel has hung up (been deallocated). The purpose of
/// this is to propagate panicks among tasks.
/// this is to propagate panics among tasks.
///
/// If a panic is not desired, then there are two options:
///

View File

@ -383,8 +383,8 @@ impl FromStr for SocketAddr {
/// expected by its `FromStr` implementation or a string like `<host_name>:<port>` pair
/// where `<port>` is a `u16` value.
///
/// For the former, `to_socker_addr_all` returns a vector with a single element corresponding
/// to that socker address.
/// For the former, `to_socket_addr_all` returns a vector with a single element corresponding
/// to that socket address.
///
/// For the latter, it tries to resolve the host name and returns a vector of all IP addresses
/// for the host name, each joined with the port.
@ -443,7 +443,7 @@ pub trait ToSocketAddr {
/// Converts this object to all available socket address values.
///
/// Some values like host name string naturally corrrespond to multiple IP addresses.
/// Some values like host name string naturally correspond to multiple IP addresses.
/// This method tries to return all available addresses corresponding to this object.
///
/// By default this method delegates to `to_socket_addr` method, creating a singleton

View File

@ -319,7 +319,7 @@ impl TcpListener {
/// to this listener. The port allocated can be queried via the
/// `socket_name` function.
///
/// The address type can be any implementor of `ToSocketAddr` trait. See its
/// The address type can be any implementer of `ToSocketAddr` trait. See its
/// documentation for concrete examples.
pub fn bind<A: ToSocketAddr>(addr: A) -> IoResult<TcpListener> {
super::with_addresses(addr, |addr| {

View File

@ -82,7 +82,7 @@ impl UdpSocket {
/// Sends data on the socket to the given address. Returns nothing on
/// success.
///
/// Address type can be any implementor of `ToSocketAddr` trait. See its
/// Address type can be any implementer of `ToSocketAddr` trait. See its
/// documentation for concrete examples.
pub fn send_to<A: ToSocketAddr>(&mut self, buf: &[u8], addr: A) -> IoResult<()> {
super::with_addresses(addr, |addr| self.inner.send_to(buf, addr))

View File

@ -60,7 +60,7 @@ pub struct RWLock<T> {
data: UnsafeCell<T>,
}
/// Structure representing a staticaly allocated RWLock.
/// Structure representing a statically allocated RWLock.
///
/// This structure is intended to be used inside of a `static` and will provide
/// automatic global access as well as lazy initialization. The internal

View File

@ -17,7 +17,7 @@
//!
//! There are no restrictions on what types can be placed into a scoped
//! variable, but all scoped variables are initialized to the equivalent of
//! null. Scoped thread local stor is useful when a value is present for a known
//! null. Scoped thread local storage is useful when a value is present for a known
//! period of time and it is not required to relinquish ownership of the
//! contents.
//!