about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2019-10-21 03:10:59 +0900
committerGitHub <noreply@github.com>2019-10-21 03:10:59 +0900
commitc609a5aafc41357bd22669ededc1d82028ecac22 (patch)
tree8169f2caffa37fbc56ba1ab830ca5b2c7baba52a
parent4f74fd745f0a7d38ebebba635c336c435a076091 (diff)
parent379733e8a02ca6fb500c2641e587ad96fb2ee9a5 (diff)
downloadrust-c609a5aafc41357bd22669ededc1d82028ecac22.tar.gz
rust-c609a5aafc41357bd22669ededc1d82028ecac22.zip
Rollup merge of #65626 - guanqun:patch-1, r=varkor
trivial typo fix
-rw-r--r--src/libsyntax/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs
index a68b7fdf931..3fa13f08d3a 100644
--- a/src/libsyntax/lib.rs
+++ b/src/libsyntax/lib.rs
@@ -67,7 +67,7 @@ pub struct Globals {
 impl Globals {
     fn new(edition: Edition) -> Globals {
         Globals {
-            // We have no idea how many attributes their will be, so just
+            // We have no idea how many attributes there will be, so just
             // initiate the vectors with 0 bits. We'll grow them as necessary.
             used_attrs: Lock::new(GrowableBitSet::new_empty()),
             known_attrs: Lock::new(GrowableBitSet::new_empty()),