diff --git a/src/fn/closures.md b/src/fn/closures.md index 68bfd8adf6..a0a33efba1 100644 --- a/src/fn/closures.md +++ b/src/fn/closures.md @@ -1,7 +1,7 @@ # Closures Closures are functions that can capture the enclosing environment. For -example, a closure that captures the x variable: +example, a closure that captures the `x` variable: ```Rust |val| val + x