File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
content/pages/04-web-development Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ extension, but the preferred way of routing is through the
116116In Object Dispatch a root controller object is traversed while
117117resolving the URL. Each part of the url path is mapped to a property
118118of the controller (Which might point to a sub controller) until
119- a final collable action is encountered.
119+ a final callable action is encountered.
120120
121121This leads to a very natural mapping between URLs and the code
122122serving them, allowing people with minimal knowledge of a project
@@ -137,7 +137,7 @@ class RootController(TGController):
137137
138138It's easy to see how `` /users/new `` actually resolves
139139to `` RootController.users.new `` and all options provided
140- to the URL are passed to the action serving the respose
140+ to the URL are passed to the action serving the response
141141as arguments.
142142
143143## TurboGears Resources
@@ -165,4 +165,4 @@ as arguments.
165165* [ React in Pure Python] ( https://medium.com/@__amol__/es2015-and-react-in-pure-python-environment-b326dc15012c )
166166 An article showcasing how to create web applications relying on React
167167 without the need to have NodeJS installed at all. The article
168- uses TurboGears as the web framework to develop the example application.
168+ uses TurboGears as the web framework to develop the example application.
You can’t perform that action at this time.
0 commit comments