Skip to content

Commit f85fdac

Browse files
authored
Fix typo in Action Controller Overview guide
1 parent ffacf9b commit f85fdac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/source/action_controller_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ application to add a new client, Rails will create an instance of
5555
`ClientsController` and call its `new` method. If the `new` method is empty, Rails
5656
will automatically render the `new.html.erb` view by default.
5757

58-
NOTE: The `new` method is an instance method here, called on an instance of `ClientsController`. This should not be confused with the `new` class method (ie`ClientsController.new`).
58+
NOTE: The `new` method is an instance method here, called on an instance of `ClientsController`. This should not be confused with the `new` class method (i.e., `ClientsController.new`).
5959

6060
In the `new` method, the controller would typically create an instance of the
6161
`Client` model, and make it available as an instance variable called `@client`

0 commit comments

Comments
 (0)