Skip to content

Commit 00ae648

Browse files
committed
staticly -> statically
What's funny about this one is that spellcheck caught it, but for some reason didn't give me the right suggestion, so I assumed that it wasn't in my dictionary. Oh well. Thanks @P1start! ❤️
1 parent 8fd69c4 commit 00ae648

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/doc/guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,11 @@ would look like this: `println()`. For our purposes, we don't need to worry
201201
about this difference. Just know that sometimes, you'll see a `!`, and that
202202
means that you're calling a macro instead of a normal function.
203203

204-
Next, `"Hello, world"` is a **string**. Strings are a surprisingly
205-
complicated topic in a systems programming language, and this is a **staticly
206-
allocated** string. We will talk more about different kinds of allocation
207-
later. We pass this string as an argument to `println!`, which prints the
208-
string to the screen. Easy enough!
204+
Next, `"Hello, world"` is a **string**. Strings are a surprisingly complicated
205+
topic in a systems programming language, and this is a **statically allocated**
206+
string. We will talk more about different kinds of allocation later. We pass
207+
this string as an argument to `println!`, which prints the string to the
208+
screen. Easy enough!
209209

210210
Finally, the line ends with a semicolon (`;`). Rust is an **expression
211211
oriented** language, which means that most things are expressions. The `;` is

0 commit comments

Comments
 (0)