diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2019-10-21 03:10:59 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-21 03:10:59 +0900 |
| commit | c609a5aafc41357bd22669ededc1d82028ecac22 (patch) | |
| tree | 8169f2caffa37fbc56ba1ab830ca5b2c7baba52a | |
| parent | 4f74fd745f0a7d38ebebba635c336c435a076091 (diff) | |
| parent | 379733e8a02ca6fb500c2641e587ad96fb2ee9a5 (diff) | |
| download | rust-c609a5aafc41357bd22669ededc1d82028ecac22.tar.gz rust-c609a5aafc41357bd22669ededc1d82028ecac22.zip | |
Rollup merge of #65626 - guanqun:patch-1, r=varkor
trivial typo fix
| -rw-r--r-- | src/libsyntax/lib.rs | 2 |
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()), |
