diff --git a/src/types/closure.md b/src/types/closure.md index 520d90480..dea0b79cd 100644 --- a/src/types/closure.md +++ b/src/types/closure.md @@ -131,8 +131,8 @@ more specific call traits: > not how it captures them. *Non-capturing closures* are closures that don't capture anything from their -environment. They can be coerced to function pointers (`fn`) with the matching -signature. +environment. They can be coerced to function pointers (e.g., `fn()`) +with the matching signature. ```rust let add = |x, y| x + y;