commit | 65e7f308aadef5843d2b5058ba4592940e740835 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sun Sep 04 10:19:25 2016 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Sun Sep 04 10:19:25 2016 -0700 |
tree | f1da7b2859d797e053eac7da0d0d6bc6ee434c5a | |
parent | b79ee96316b1985db99a74a9ee8cebc6471cf699 [diff] [blame] |
Stop renaming multispace
diff --git a/src/common.rs b/src/common.rs index c7a2609..3cd8587 100644 --- a/src/common.rs +++ b/src/common.rs
@@ -16,7 +16,7 @@ )); named!(pub visibility<&str, Visibility>, preceded!( - opt!(call!(::nom::space)), + opt!(call!(::nom::multispace)), alt!( terminated!(tag_s!("pub"), call!(::nom::multispace)) => { |_| Visibility::Public } |