Skip to content

Commit

Permalink
Fixed a typo in the README
Browse files Browse the repository at this point in the history
  • Loading branch information
AliasIO committed Feb 16, 2013
1 parent 6948556 commit 0609906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Controllers get their data from models. Code for querying a database,
reading/writing files and parsing data all belongs in a model. You can create as
many models as you like; they aren't tied to specific controllers.

A model can instantiated using `$this->app->getModel($modelName)`. To allow
A model can be instantiated using `$this->app->getModel($modelName)`. To allow
re-use, use `$this->app->getSingleton($modelName)` instead as this will only
create a single instance when called multiple times (useful for database
connections and session management).
Expand Down

0 comments on commit 0609906

Please sign in to comment.