Skip to content

Commit

Permalink
Minor typo changes and grammar improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsmith committed Oct 9, 2014
1 parent 4bbaac0 commit 114989e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/angular-meteor/client/views/steps/tutorial.step_05.html
Expand Up @@ -20,7 +20,7 @@

The goals for this step:

* When you will navigate to index.html, you will be redirected to index.html/phones and the phone list appears in the browser.
* When you will navigate to index.html, you will be redirected to index.html/parties and the party list appears in the browser.
* When you click on a party link the url changes to one specific to that party and the stub of a party detail page is displayed.

# Dependencies
Expand Down Expand Up @@ -79,12 +79,12 @@
<button ng-click="remove(party)">X</button>
</li>
</ul>
{{lt}}/template>
</template>

The code is almost the same except those changes:
The code is almost the same except these changes:

1. Wrapped the code in a template tag with a name attribute
2. Added a link to the parties name display (that link will take us the that party's detailed page
2. Added a link to the parties name display (that link will take us the that party's detailed page)

## Meteor templates

Expand Down Expand Up @@ -122,7 +122,7 @@ <h1>

<template name="party-details.html">
Here you will see the details of party number: [[ partyId ]]
{{lt}}/template>
</template>

We will get to it later on.

Expand Down Expand Up @@ -153,7 +153,7 @@ <h1>
}]);


Using the angualr app's .config() method, we request the $stateProvider to be injected into our config function and use the state method to define our routes.
Using the Angular app's .config() method, we request the $stateProvider to be injected into our config function and use the state method to define our routes.

Our application routes are defined as follows:

Expand Down Expand Up @@ -210,4 +210,4 @@ <h1>
<a href="/tutorial/step_06"><li class="btn btn-primary">Next <i class="glyphicon glyphicon-step-forward"></i></li></a>
</ul>
</div>
</template>
</template>

0 comments on commit 114989e

Please sign in to comment.