From 0746a29bafd644448f38161ea2c8779d3b1d515a Mon Sep 17 00:00:00 2001 From: Alexander Gonzalez Date: Wed, 20 Mar 2024 14:19:19 +0100 Subject: [PATCH] fix: fix typo in GUIDELINES.md --- GUIDELINES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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