about summary refs log tree commit diff
path: root/src/libstd/uv_ll.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-05-09 03:51:32 -0700
committerbors <bors@rust-lang.org>2013-05-09 03:51:32 -0700
commitca95e7f94ed7b9f793a061bd0a7cc4d74de6b10d (patch)
tree6420f0a5c8a559862c9b8272f9508ee95e3e4164 /src/libstd/uv_ll.rs
parent5617916726186290710dade90057683904a5f215 (diff)
parentbd4ee7c7d2f00e8c41824fac7e5d155dff40c25f (diff)
downloadrust-ca95e7f94ed7b9f793a061bd0a7cc4d74de6b10d.tar.gz
rust-ca95e7f94ed7b9f793a061bd0a7cc4d74de6b10d.zip
auto merge of #6345 : seanmoon/rust/fix-typos, r=sanxiyn
Hi there,

Really enjoying Rust. Noticed a few typos so I searched around for a few more--here's some fixes.

Ran `make check` and got `summary of 24 test runs: 4868 passed; 0 failed; 330 ignored`.

Thanks!

Sean
Diffstat (limited to 'src/libstd/uv_ll.rs')
-rw-r--r--src/libstd/uv_ll.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/uv_ll.rs b/src/libstd/uv_ll.rs
index ad3cfeb4a99..5cccf2c348d 100644
--- a/src/libstd/uv_ll.rs
+++ b/src/libstd/uv_ll.rs
@@ -269,7 +269,7 @@ pub struct sockaddr_in {
 }
 
 // unix size: 28 .. FIXME #1645
-// stuck with 32 becuse of rust padding structs?
+// stuck with 32 because of rust padding structs?
 #[cfg(target_arch="x86_64")]
 pub struct sockaddr_in6 {
     a0: *u8, a1: *u8,
@@ -286,7 +286,7 @@ pub struct sockaddr_in6 {
 }
 
 // unix size: 28 .. FIXME #1645
-// stuck with 32 becuse of rust padding structs?
+// stuck with 32 because of rust padding structs?
 pub type addr_in = addr_in_impl::addr_in;
 #[cfg(unix)]
 pub mod addr_in_impl {
@@ -1377,7 +1377,7 @@ mod test {
             let tcp_init_result = tcp_init(test_loop as *libc::c_void,
                                            tcp_handle_ptr);
             if (tcp_init_result == 0) {
-                debug!(~"sucessful tcp_init_result");
+                debug!(~"successful tcp_init_result");
 
                 debug!(~"building addr...");
                 let addr = ip4_addr(ip, port);