aboutsummaryrefslogtreecommitdiff
path: root/src/path.rs
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-05-15 23:36:50 -0700
committerHaibo Huang <hhb@google.com>2020-05-15 23:36:50 -0700
commit548c6a34835dd62b4f3dfee7b6a09194ad924bd6 (patch)
treeb2fe033e659be887071f4143958b76fabf563450 /src/path.rs
parent304b615e15a5f576a05a97708b502f0e83a417d0 (diff)
downloadsyn-548c6a34835dd62b4f3dfee7b6a09194ad924bd6.tar.gz
Upgrade rust/crates/syn to 1.0.22
Test: None Change-Id: Icb173886fa6b0ea21560d851ae40ca4897c27f4e
Diffstat (limited to 'src/path.rs')
-rw-r--r--src/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.rs b/src/path.rs
index 8dda43ee..6e37bf35 100644
--- a/src/path.rs
+++ b/src/path.rs
@@ -2,7 +2,7 @@ use super::*;
use crate::punctuated::Punctuated;
ast_struct! {
- /// A path at which a named item is exported: `std::collections::HashMap`.
+ /// A path at which a named item is exported (e.g. `std::collections::HashMap`).
///
/// *This type is available if Syn is built with the `"derive"` or `"full"`
/// feature.*