From 2547f87d84a1c3a56e59465dd110d928933f527c Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Sat, 27 Feb 2016 18:39:26 -0500 Subject: [PATCH] Fix typo in method name in style guide. I agree to license my contributions to each file under the same terms given at the top of each file I changed. --- STYLE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STYLE.md b/STYLE.md index b91380ee9..68351797c 100644 --- a/STYLE.md +++ b/STYLE.md @@ -11,7 +11,7 @@ there are some differences and *ring* adds additional guidelines. In general, import modules, not non-module items, e.g. `use core`, not `use core::mem::size_of_val`. This means that the uses of such functions must -be qualified: `core::mem::size_of_val(x)`, not `size_fo_val(x)`. Exceptions may +be qualified: `core::mem::size_of_val(x)`, not `size_of_val(x)`. Exceptions may be made for things that are very annoying to qualify; for example, we usually `use super::input::*` or `use super::input::Input` because writing things like `input::Input` is highly annoying.