commit | c04351942302452ca96db7f877afbbfe7688601b | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sun Jan 07 11:46:08 2018 -0800 |
committer | David Tolnay <dtolnay@gmail.com> | Sun Jan 07 11:46:08 2018 -0800 |
tree | bb182dc1fd336376bb85d54cc36675309788bfea | |
parent | a7786b490efa25b937eda5bda84a2a0e8888f4ec [diff] [blame] |
Clean up some type docs
diff --git a/src/item.rs b/src/item.rs index 4fef2b4..84bf678 100644 --- a/src/item.rs +++ b/src/item.rs
@@ -645,9 +645,7 @@ } ast_enum_of_structs! { - /// An argument in a function signature. - /// - /// E.g. `bar: usize` as in `fn foo(bar: usize)` + /// An argument in a function signature: the `n: usize` in `fn f(n: usize)`. /// /// *This type is available if Syn is built with the `"full"` feature.* ///