Skip to content

Commit 0f951b9

Browse files
committed
end sentences with proper punctuation
i.e., `.`, `!` or `?`, even when an `:)` emoticon follows
1 parent 401a13d commit 0f951b9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

en/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
> To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/
66
77
## Welcome
8-
Welcome to the Django Girls Tutorial! We are happy to see you here :) In this tutorial, we will take you on a journey under the hood of web technologies, offering you a glimpse of all the bits and pieces that need to come together to make the web work as we know it.
8+
Welcome to the Django Girls Tutorial! We are happy to see you here. :) In this tutorial, we will take you on a journey under the hood of web technologies, offering you a glimpse of all the bits and pieces that need to come together to make the web work as we know it.
99

10-
As with all unknown things, this is going to be an adventure - but no worries, since you already worked up the courage to be here, you'll be just fine :)
10+
As with all unknown things, this is going to be an adventure - but no worries, since you already worked up the courage to be here, you'll be just fine. :)
1111

1212
## Introduction
1313

en/deploy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ You can also go to the "Files" page and navigate around using PythonAnywhere's b
200200

201201
## You are now live!
202202

203-
Your site should now be live on the public Internet! Click through to the PythonAnywhere "Web" page to get a link to it. You can share this with anyone you want :)
203+
Your site should now be live on the public Internet! Click through to the PythonAnywhere "Web" page to get a link to it. You can share this with anyone you want. :)
204204

205205

206206
> **Note** This is a beginners' tutorial, and in deploying this site we've taken a few shortcuts which aren't ideal from a security point of view. If and when you decide to build on this project, or start a new project, you should review the [Django deployment checklist](https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/) for some tips on securing your site.

en/django_forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,4 +426,4 @@ $ git pull
426426
* Finally, hop on over to the ["Web" page](https://www.pythonanywhere.com/web_app_setup/) (use the menu button in the upper right of the console) and hit **Reload**. Refresh your https://subdomain.pythonanywhere.com blog to see the changes.
427427

428428

429-
And that should be it! Congrats :)
429+
And that should be it. Congrats! :)

en/extend_your_application/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,4 @@ The `manage.py collectstatic` command is a bit like `manage.py migrate`. We mak
207207

208208
In any case, we're now ready to hop on over to the ["Web" page](https://www.pythonanywhere.com/web_app_setup/) (from the menu button in the upper right of the console) and hit **Reload**, and then look at the https://subdomain.pythonanywhere.com page to see the result.
209209

210-
And that should be it! Congrats :)
210+
And that should be it. Congrats! :)

en/html/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ See how your website looks now: http://127.0.0.1:8000/
3434
3535
![Figure 11.1](images/step1.png)
3636

37-
No error anymore! Congratulations :) However, your website isn't actually publishing anything except an empty page, because your template is empty too. We need to fix that.
37+
No error anymore! Congratulations! :) However, your website isn't actually publishing anything except an empty page, because your template is empty too. We need to fix that.
3838

3939
Open the new file in the code editor, and add the following:
4040

@@ -52,7 +52,7 @@ So how does your website look now? Visit it to find out: http://127.0.0.1:8000/
5252

5353
![Figure 11.2](images/step3.png)
5454

55-
It worked! Nice work there :)
55+
It worked. Nice work there! :)
5656

5757
- The most basic tag, `<html>`, is always the beginning of any web page and `</html>` is always the end. As you can see, the whole content of the website goes between the beginning tag `<html>` and closing tag `</html>`
5858
- `<p>` is a tag for paragraph elements; `</p>` closes each paragraph

en/python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ Note that the second of these two numbers is not included in the list that is ou
10081008

10091009
That's it. __You totally rock!__ This was a tricky chapter, so you should feel proud of yourself. We're definitely proud of you for making it this far!
10101010

1011-
For official and full python tutorial visit https://docs.python.org/3/tutorial/. This will give you a more thorough and complete study of the language. Cheers :)
1011+
For official and full python tutorial visit https://docs.python.org/3/tutorial/. This will give you a more thorough and complete study of the language. Cheers! :)
10121012

10131013
You might want to briefly do something else – stretch, walk around for a bit, rest your eyes – before going on to the next chapter. :)
10141014

0 commit comments

Comments
 (0)