diff --git a/docs/angular-meteor/client/views/steps/tutorial.step_12.html b/docs/angular-meteor/client/views/steps/tutorial.step_12.html index 7cf38719d..24a5e3b0e 100644 --- a/docs/angular-meteor/client/views/steps/tutorial.step_12.html +++ b/docs/angular-meteor/client/views/steps/tutorial.step_12.html @@ -23,25 +23,25 @@ First, let's learn about [ng-show](https://docs.angularjs.org/api/ng/directive/ngShow) and [ng-hide](https://docs.angularjs.org/api/ng/directive/ngHide). -So one thing we want to hide and show is the form for creating a new party. if the user is not logged in, he can't create a party, so why displaying the form for him? -If the user is not logged in we want to display a message saying he needs to log in to create a new party. +So one thing we want to hide and show is the form for creating a new party. If a user is not logged in, they can't create a party, so why displaying the form for them? +If the user is not logged in, we want to display a message saying they need to log in to create a new party. In parties-list.html add a ng-show directive to the form like that: