about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorJihyeok Seo <me@limeburst.net>2014-05-20 00:51:16 +0900
committerJihyeok Seo <me@limeburst.net>2014-05-20 00:51:16 +0900
commit564b9250362cc7bb0f40320bf2cedc58ec47b077 (patch)
tree7db2f92fac41df9cda013d196b45cd02cd99fbd9 /src/libcore
parented156772bd95b8d621d50102922e5f5ac886d4a1 (diff)
downloadrust-564b9250362cc7bb0f40320bf2cedc58ec47b077.tar.gz
rust-564b9250362cc7bb0f40320bf2cedc58ec47b077.zip
Fix typo in libcore
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs
index 05b314b6998..9f147fafdc2 100644
--- a/src/libcore/lib.rs
+++ b/src/libcore/lib.rs
@@ -17,7 +17,7 @@
 //!
 //! * `memcpy`, `memcmp`, `memset` - These are core memory routines which are
 //!   often generated by LLVM. Additionally, this library can make explicit
-//!   calls to these funcitons. Their signatures are the same as found in C.
+//!   calls to these functions. Their signatures are the same as found in C.
 //!   These functions are often provided by the system libc, but can also be
 //!   provided by `librlibc` which is distributed with the standard rust
 //!   distribution.