about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2016-12-21 10:44:54 -0800
committerCorey Farwell <coreyf@rwell.org>2016-12-21 10:44:54 -0800
commit4a354abeae973ecf7bd92f35bc786e62a128d6ae (patch)
treee3585246b32e95b483fd2347524b15a53c1bd018 /src/libstd
parent44c2eb9182a74025a486ad3e219134c4e3ae160a (diff)
downloadrust-4a354abeae973ecf7bd92f35bc786e62a128d6ae.tar.gz
rust-4a354abeae973ecf7bd92f35bc786e62a128d6ae.zip
Fix 'unhygienically' typo.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index a79b9f75b7e..d160a68cfc1 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -463,7 +463,7 @@ pub mod builtin {
     ///
     /// Using this macro is often a bad idea, because if the file is
     /// parsed as an expression, it is going to be placed in the
-    /// surrounding code unhygenically. This could result in variables
+    /// surrounding code unhygienically. This could result in variables
     /// or functions being different from what the file expected if
     /// there are variables or functions that have the same name in
     /// the current file.