Provide example of MiniFunction input
diff --git a/src/expr.rs b/src/expr.rs
index 27dae63..796fe67 100644
--- a/src/expr.rs
+++ b/src/expr.rs
@@ -2345,6 +2345,12 @@
         /// use syn::parse::{Parse, ParseStream, Result};
         ///
         /// // Parse a function with no generics or parameter list.
+        /// //
+        /// //     fn playground {
+        /// //         let mut x = 1;
+        /// //         x += 1;
+        /// //         println!("{}", x);
+        /// //     }
         /// struct MiniFunction {
         ///     attrs: Vec<Attribute>,
         ///     fn_token: Token![fn],