From 46126d123704a23eac22062a2d14a8d838b49aa4 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Thu, 7 Apr 2022 00:51:00 +0900 Subject: [PATCH] Code highlight a variable This PR code highlights a variable in closures.md. --- src/fn/closures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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