From 6c348dfe720e9c516b47beb1e318b8b3544ffe12 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Fri, 19 Sep 2014 16:39:23 -0400 Subject: [PATCH] rust -> Rust --- src/doc/reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index 2566db7a8a9..d1d06195e2b 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -1689,7 +1689,7 @@ of an item to see whether it should be allowed or not. This is where privacy warnings are generated, or otherwise "you used a private item of another module and weren't allowed to." -By default, everything in rust is *private*, with one exception. Enum variants +By default, everything in Rust is *private*, with one exception. Enum variants in a `pub` enum are also public by default. You are allowed to alter this default visibility with the `priv` keyword. When an item is declared as `pub`, it can be thought of as being accessible to the outside world. For example: