Skip to content

Commit bcb27b9

Browse files
committed
More typo fixes.
1 parent 1d6c75d commit bcb27b9

5 files changed

Lines changed: 8 additions & 7 deletions

File tree

css/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ In your `blog.css` file you should add following code:
6666

6767
`a` inside of `h1` is the tag we're applying our styles to, and we're telling it to change color to `#FCA205`. Of course, you can put your own color here!
6868

69-
Then, we need to also tell our HTML template that we added some CSS. Open `post_list.html` file and add this file on the very begining of it:
69+
Then, we need to also tell our HTML template that we added some CSS. Open the `post_list.html` file and add this line at the very beginning of it:
7070

7171
{% load staticfiles %}
7272

deploy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Then save the file.
4545

4646
## mysite/urls.py
4747

48-
Open `mysite/urls.py` file and add these two line in the begining of the file:
48+
Open `mysite/urls.py` file and add these two line in the beginning of the file:
4949

5050
from django.conf.urls.static import static
5151
from django.conf import settings
@@ -94,7 +94,7 @@ Create `.gitignore` file with following content:
9494
__pycache__
9595
staticfiles
9696

97-
and save it. The dot on the begining of the name file is important! This will tell Heroku to ignore this file and don't use it.
97+
and save it. The dot on the beginning of the name file is important! This will tell Heroku to ignore this file and don't use it.
9898

9999
Next, we’ll create a new git repository and save our changes. Go to your console/command-line and run this commands:
100100

django_forms/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,11 +271,11 @@ or we just opened a form with this post without saving anything yet:
271271

272272
Ok, let's test if it works! Let's go to `post_detail` page. There should be an edit button in top right corner:
273273

274-
![Edit button](images/edit_button.png)
274+
![Edit button](images/edit_button.png)
275275

276276
When you click it you will see the form with our blog post:
277277

278-
![Edit form](images/edit_form.png)
278+
![Edit form](images/edit_form.png)
279279

280280
Feel free to change the title or the text and save changes!
281281

extend_your_application/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ But this code has a problem. If there is no `Post` with given `primary key` we w
8989

9090
![DoesNotExist error](images/does_not_exist.png)
9191

92-
We don't want it! But, of course, Django comes with somthing that will handle that for us: `get_object_or_404`. In case there is no `Post` with given `pk` it will display much nicer page (called `Page Not Found 404` page).
92+
We don't want it! But, of course, Django comes with something that will handle that for us: `get_object_or_404`. In case there is no `Post` with given `pk` it will display much nicer page (called `Page Not Found 404` page).
9393

9494
![Page not found](images/404.png)
9595

@@ -122,6 +122,7 @@ Oh no! Error once again. But we already know how to deal with it, right? We need
122122
We will create a file in `blog/template/blog` called `post_detail.html`.
123123

124124
It will look like this:
125+
125126
{% extends 'mysite/base.html' %}
126127

127128
{% block content %}

html/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ How your website look like know? Click to find out: http://127.0.0.1:8000/
3333

3434
It worked! Nice work there :)
3535

36-
- The most basic tag, `<html>`, is always the beginning of any webpage and `</html>` is the end. As you can see, the whole content of the website goes between the begining tag `<html>` and closing tag `</html>`
36+
- The most basic tag, `<html>`, is always the beginning of any webpage and `</html>` is the end. As you can see, the whole content of the website goes between the beginning tag `<html>` and closing tag `</html>`
3737
- `<p>` is a tag for paragraphs
3838

3939
## Head & body

0 commit comments

Comments
 (0)