remove `interpret_meta` from documentation
diff --git a/src/attr.rs b/src/attr.rs
index 449e76e..794c16e 100644
--- a/src/attr.rs
+++ b/src/attr.rs
@@ -57,11 +57,11 @@
     ///    path  tts                   path         tts
     /// ```
     ///
-    /// Use the [`interpret_meta`] method to try parsing the tokens of an
+    /// Use the [`parse_meta`] method to try parsing the tokens of an
     /// attribute into the structured representation that is used by convention
     /// across most Rust libraries.
     ///
-    /// [`interpret_meta`]: #method.interpret_meta
+    /// [`parse_meta`]: #method.parse_meta
     ///
     /// # Parsing
     ///
diff --git a/src/lit.rs b/src/lit.rs
index 4f0779a..32e7210 100644
--- a/src/lit.rs
+++ b/src/lit.rs
@@ -146,9 +146,9 @@
     /// fn get_path(attr: &Attribute) -> Result<Path> {
     ///     let default = || Path::from(Ident::new("Self", Span::call_site()));
     ///
-    ///     let meta = match attr.interpret_meta() {
-    ///         Some(meta) => meta,
-    ///         None => return Ok(default()),
+    ///     let meta = match attr.parse_meta() {
+    ///         Ok(meta) => meta,
+    ///         Err(_) => return Ok(default()),
     ///     };
     ///
     ///     if meta.name() != "path" {