From 564b9250362cc7bb0f40320bf2cedc58ec47b077 Mon Sep 17 00:00:00 2001 From: Jihyeok Seo Date: Tue, 20 May 2014 00:51:16 +0900 Subject: [PATCH] Fix typo in libcore --- src/libcore/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.