Skip to content

Commit

Permalink
Merge pull request #4239 from rust-lang/fix-spacing-in-chapter-one
Browse files Browse the repository at this point in the history
Chapter 1: fix 'four things' now that spacing is not emphasized
  • Loading branch information
chriskrycho authored Feb 24, 2025
2 parents 4a01a91 + e476d7b commit 4958a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch01-02-hello-world.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ println!("Hello, world!");
```

This line does all the work in this little program: it prints text to the
screen. There are four important details to notice here.
screen. There are three important details to notice here.

First, `println!` calls a Rust macro. If it had called a function instead, it
would be entered as `println` (without the `!`). We’ll discuss Rust macros in
Expand Down

0 comments on commit 4958a5d

Please sign in to comment.