Skip to content

Commit cacc2bf

Browse files
committed
Fixed several typos
1 parent be42777 commit cacc2bf

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

how_internet_works/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ We bet you use the Internet every day. But do you actually know what happens whe
77
First thing you need to understand is that a website is just a bunch of files saved on a computer disk. Just like your movies, music or pictures.
88
However, there is one part that is unique for websites: they include computer code called HTML.
99

10-
If you're not familiar with programming, it can be hard to grasp at first, but your web browsers (like Chrome, Safari, Firefox, etc) love HTML. Web browsers are designed to understand this code,
10+
If you're not familiar with programming, it can be hard to grasp at first, but your web browsers (like Chrome, Safari, Firefox, etc.) love HTML. Web browsers are designed to understand this code,
1111
follow the instructions and present all these files that your website is made of exactly the way you want them to be presented.
1212

1313
As every file, we need to store them somewhere on a computer disk. For the Internet, we use special, powerful computers called *servers*. They don't have
@@ -37,9 +37,9 @@ Your letter goes to the post office. Then it goes to another that is nearer your
3737

3838
Yes, it is as simple as that. You send messages and you expect some response. Of course, instead of paper and pen you use bytes of data, but the idea is the same!
3939

40-
Instead of address with street name, city, zipcode and country, we use IP addresses. Your computer asks DNS (Domain Name System) first to translate djangogirls.org into an IP address. It works a little bit like old-fashioned phonebooks where you could look for the name of the person and find their phone number and address.
40+
Instead of addresses with street name, city, zipcode and country, we use IP addresses. Your computer asks the DNS (Domain Name System) first to translate djangogirls.org into an IP address. It works a little bit like old-fashioned phonebooks where you could look for the name of the person and find their phone number and address.
4141

42-
When you send a letter it needs to have certain features to be delivered correctly: address, postmark etc.. You also use language that the receiver understands, right? The same is with *data packets* you send in order to see a website: you use a protocol called HTTP (HyperText TransferProtocol).
42+
When you send a letter it needs to have certain features to be delivered correctly: address, postmark etc. You also use a language that the receiver understands, right? The same is with *data packets* you send in order to see a website: you use a protocol called HTTP (Hypertext Transfer Protocol).
4343

4444
So basically, when you have a website you need to have a *server* (machine) where it lives. The *server* is waiting for any incoming *requests* (letters that ask you to send your website) and it sends back your website (in another letter).
4545

python_installation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Huh, it's exciting, right?! You'll write your first line of code in just minutes!
44

5-
But first, let us tell you what Python is. Python is a very popular programming language that can be used for creating websites, games, science, graphics, and much, much more.
5+
But first, let us tell you what Python is. Python is a very popular programming language that can be used for creating websites, games, science, graphics and much, much more.
66

77
Python was conceived in the late 1980s and its main goal is to be readable by human beings (not only machines!), which is why it looks much simpler than other programming languages. That makes it easy to learn, but don't worry, Python is also really powerful!
88

python_introduction/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A window should pop up on your screen. This window is a prompt, waiting for comm
1919
Type "copyright", "credits" or "license" for more information.
2020
>>>
2121

22-
### Linux and OX X
22+
### Linux and OS X
2323

2424
On Mac OS X you can do this by launching the `Terminal` application (it's in Applications → Utilities). On Linux, it's probably under Applications → Accessories → Terminal.
2525

@@ -122,7 +122,7 @@ Let's say we want to create a new variable called `name`:
122122

123123
You see? It's easy! Simply: name equals Ola.
124124

125-
As you've noticed, your program didn't return anything like it did before. How do we now that the variable actually is there? Simply enter `name` and hit Enter:
125+
As you've noticed, your program didn't return anything like it did before. How do we know that the variable actually is there? Simply enter `name` and hit Enter:
126126

127127
>>> name
128128
'Ola'

0 commit comments

Comments
 (0)