We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8942ab0 commit c4a3476Copy full SHA for c4a3476
src/fn/closures.md
@@ -5,9 +5,9 @@
5
6
<!--
7
Closures are functions that can capture the enclosing environment. For
8
-example, a closure that captures the x variable:
+example, a closure that captures the `x` variable:
9
-->
10
-Rustにおけるクロージャは、その外側の環境を捕捉した関数のことです。例えば、次のコードは変数xを捕捉したクロージャです。
+Rustにおけるクロージャは、その外側の環境を捕捉した関数のことです。例えば、次のコードは変数`x`を捕捉したクロージャです。
11
12
```Rust
13
|val| val + x
0 commit comments