diff --git a/GUIDELINES.md b/GUIDELINES.md index 8f3a1aa3..3c2a9d98 100644 --- a/GUIDELINES.md +++ b/GUIDELINES.md @@ -68,7 +68,7 @@ The following code guidelines will help make code review smoother: Use `unwrap` only in either of three circumstances: -- Based on manual static anaylsis, you've concluded that it's impossible for +- Based on manual static analysis, you've concluded that it's impossible for the code to panic; so unwrapping is _safe_. An example would be: ```rust