Skip to content

Commit 0ce7d84

Browse files
committed
Typo fixes
1 parent 078bbba commit 0ce7d84

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ It will (more or less) look like this:
2424

2525
![Figure 0.1](images/application.png)
2626

27-
> If you work with the tutorial on your own and don't have a coach that will help you in case of any problem, we have a chat for you: [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/DjangoGirls/tutorial?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge). We asked our coaches and previous attendees to be there from time to time and help others with the tutorial! Don't be afraid to ask your question there!
27+
> If you work with the tutorial on your own and don't have a coach that will help you in case of any problem, we have a chat for you: [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/DjangoGirls/tutorial?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge). We asked our coaches and previous attendees to be there from time to time and help others with the tutorial! Don't be afraid to ask your question there!
2828
2929
OK, [let's start at the beginning...](how_internet_works/README.md)
3030

django_urls/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ It means that for every URL that starts with `admin/` Django will find a corresp
4141

4242
Do you wonder how Django matches URLs to views? Well, this part is tricky. Django uses `regex` -- regular expressions. Regex has a lot (a lot!) of rules that form a search pattern. It is not so easy to understand so we won't worry about it today and you'll definitely get to know them in the future. Today we will only use the ones we need.
4343

44-
Here is a simple example just to ne leave you stuck in this sentence :D
45-
46-
Imagine you will have your website like that: www.mysite.com/post/12345 , do i have to write views for all the post numbers? of course not! the easiest way, is to tell Django that, my post links should be `www.mysite.com/post/<a number>` and he will deal with that ;) .
44+
Here is a simple example just to not leave you stuck on this sentence:
45+
imagine you have a website with the address like that: `http://www.mysite.com/post/12345/`, where `12345` is the number of your post. Writing separate views for all the post numbers would be really annoying. Django makes it easier by allowing you to write `http://www.mysite.com/post/<a number>/`. Django will take care of the rest!
4746

4847
## Your first Django url!
4948

0 commit comments

Comments
 (0)