Skip to content

Commit 396db5a

Browse files
committed
Fix a couple of typos in turbogears page
1 parent 355c955 commit 396db5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/pages/04-web-development/64-turbogears.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ extension, but the preferred way of routing is through the
116116
In Object Dispatch a root controller object is traversed while
117117
resolving the URL. Each part of the url path is mapped to a property
118118
of 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

121121
This leads to a very natural mapping between URLs and the code
122122
serving them, allowing people with minimal knowledge of a project
@@ -137,7 +137,7 @@ class RootController(TGController):
137137

138138
It's easy to see how ``/users/new`` actually resolves
139139
to ``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
141141
as 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.

0 commit comments

Comments
 (0)