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 a143114 commit 6ff12beCopy full SHA for 6ff12be
content/lessons/06_closures_iterators/index.md
@@ -17,7 +17,7 @@ Closures (Polish: "domknięcia") are anonymous functions that can access variabl
17
## Closures' types
18
19
Closures are unnameable types. That is, each closure gets its own unique type from the compiler,
20
-but we cannot use it. Therefore, closures' types must be inferred.
+but we cannot name it. Therefore, closures' types must be inferred.
21
We will often use `impl` keyword with closure traits (e.g., `impl Fn`) - those traits are described below.
22
23
## Closures capture environment
0 commit comments