summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-04-02 19:27:55 +0200
committerAndrey Andreev <narf@devilix.net>2015-04-02 19:27:55 +0200
commit016c43354ef90cc0802456d814fb5a9f88451b6f (patch)
tree1713dfc6f170a28d21712795680013acd2e05981
parentd75847ecf28bdbad7033af33514d042ee86c13c2 (diff)
parent680e52985219a25926a3396677cb8391c8cc9da6 (diff)
Merge pull request #3723 from sentabi/patch-1
[ci skip] Fix tutorial typos
-rw-r--r--user_guide_src/source/tutorial/static_pages.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/tutorial/static_pages.rst b/user_guide_src/source/tutorial/static_pages.rst
index 0c75d5a34..62b3469ad 100644
--- a/user_guide_src/source/tutorial/static_pages.rst
+++ b/user_guide_src/source/tutorial/static_pages.rst
@@ -12,14 +12,14 @@ It is the glue of your web application.
For example, when a call is made to:
- http&#58;//example.com/news/latest/10
+ http://example.com/news/latest/10
We might imagine that there is a controller named "news". The method
being called on news would be "latest". The news method's job could be to
grab 10 news items, and render them on the page. Very often in MVC,
you'll see URL patterns that match:
- http&#58;//example.com/[controller-class]/[controller-method]/[arguments]
+ http://example.com/[controller-class]/[controller-method]/[arguments]
As URL schemes become more complex, this may change. But for now, this
is all we will need to know.