We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4b3915 commit 2f615dcCopy full SHA for 2f615dc
doc/tutorial.md
@@ -241,12 +241,12 @@ _monster_size = 50;`.
241
Rust identifiers start with an alphabetic
242
character or an underscore, and after that may contain any sequence of
243
alphabetic characters, numbers, or underscores. The preferred style is to
244
-begin function, variable, and module names with a lowercase letter, using
+write function, variable, and module names with lowercase letters, using
245
underscores where they help readability, while writing types in camel case.
246
247
~~~
248
let my_variable = 100;
249
-type MyType = int; // some built-in types are _not_ camel case
+type MyType = int; // primitive types are _not_ camel case
250
251
252
## Expressions and semicolons
0 commit comments