diff --git a/02-getting-started.md.erb b/02-getting-started.md.erb index 265a0a4..b436f19 100644 --- a/02-getting-started.md.erb +++ b/02-getting-started.md.erb @@ -66,7 +66,7 @@ Now point your browser to `http://localhost:3000/` (or the equivalent `http://0. Congratulations! You've got your first Meteor app running. By the way, to stop the app all you need to do is bring up the terminal tab where the app is running, and press `ctrl+c`. -Also, note that if you're using Git, this is a good time to initialize your repo with `git init`. +Also note that if you're using Git, this is a good time to initialize your repo with `git init`. <% note do %> @@ -74,7 +74,7 @@ Also, note that if you're using Git, this is a good time to initialize your repo There was a time where Meteor relied on an external package manager called Meteorite. Since Meteor version 0.9.0, Meteorite is not needed anymore since its features have been assimilated into Meteor itself. -So, if you encounter any references to Meteorite's `mrt` command line utility throughout this book or while browsing Meteor-related material, you can safely replace them by the usual `meteor`. +So if you encounter any references to Meteorite's `mrt` command line utility throughout this book or while browsing Meteor-related material, you can safely replace them by the usual `meteor`. <% end %> diff --git a/06-adding-users.md.erb b/06-adding-users.md.erb index e955c93..020f276 100644 --- a/06-adding-users.md.erb +++ b/06-adding-users.md.erb @@ -32,7 +32,7 @@ meteor add accounts-password Those two commands make the special accounts templates available to us, and we can include them in our site using the `{{> loginButtons}}` helper. A handy tip: you can control on which side your log-in dropdown shows up using the `align` attribute (for example: `{{> loginButtons align="right"}}`). -We'll add the buttons to our header. And since that header is starting to grow larger, let's give it more room in its own template (we'll put it in `client/templates/includes/`). We're also using some extra markup and Bootstrap classes to make sure everything looks nice: +We'll add the buttons to our header. And since that header is starting to grow larger, let's give it more room in its own template (we'll put it in `client/templates/includes/`). We're also using some extra markup and classes [as specified by Bootstrap](http://getbootstrap.com/components/#navbar) to make sure everything looks nice: ~~~html