diff options
| -rw-r--r-- | src/librustc/dep_graph/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/dep_graph/README.md b/src/librustc/dep_graph/README.md index daed41f0470..72715cf6bc7 100644 --- a/src/librustc/dep_graph/README.md +++ b/src/librustc/dep_graph/README.md @@ -254,7 +254,7 @@ and `...` are whatever edges the `/* compute value */` closure creates. In particular, using the memoize helper is much better than writing the obvious code yourself: -``` +```rust if let Some(result) = map.get(key) { return result; } |
