]> git.lizzy.rs Git - rust.git/blobdiff - src/libsyntax/ptr.rs
Auto merge of #61817 - eddyb:begone-gcx-attempt-2, r=oli-obk
[rust.git] / src / libsyntax / ptr.rs
index 9afcb7c4621c9a0ef9e5a5b742c1e862e565a72d..d577243fb3dcd834590e1ddf511549037f0f3821 100644 (file)
@@ -57,7 +57,8 @@ pub fn and_then<U, F>(self, f: F) -> U where
     {
         f(*self.ptr)
     }
-    /// Equivalent to and_then(|x| x)
+
+    /// Equivalent to `and_then(|x| x)`.
     pub fn into_inner(self) -> T {
         *self.ptr
     }