diff options
| author | guanqun <guanqun.lu@gmail.com> | 2019-10-20 23:03:33 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-20 23:03:33 +0800 |
| commit | 379733e8a02ca6fb500c2641e587ad96fb2ee9a5 (patch) | |
| tree | 3e5070467e11b1be351e2d740bd8af313412f149 /src/libsyntax | |
| parent | 857a55b8f0a692cb2304ab7c062d9cc74122e516 (diff) | |
| download | rust-379733e8a02ca6fb500c2641e587ad96fb2ee9a5.tar.gz rust-379733e8a02ca6fb500c2641e587ad96fb2ee9a5.zip | |
typo fix
Diffstat (limited to 'src/libsyntax')
| -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()), |
