Skip to content

Commit 14f0c83

Browse files
committed
you -> we
1 parent d7dc186 commit 14f0c83

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

if.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ file**.
142142

143143
## Using else
144144

145-
What if you want to print a different message if it's not raining? You
145+
What if we want to print a different message if it's not raining? We
146146
could do something like this:
147147

148148
```py
@@ -155,10 +155,10 @@ if its_not_raining:
155155
print("It's not raining.")
156156
```
157157

158-
Now your program will print a different value depending on what the
158+
Now our program will print a different value depending on what the
159159
value of `its_raining` is.
160160

161-
You can also add `not its_raining` directly to the second if statement:
161+
We can also add `not its_raining` directly to the second if statement:
162162

163163
```py
164164
its_raining = True
@@ -169,7 +169,7 @@ if not its_raining:
169169
print("It's not raining.")
170170
```
171171

172-
But you can make it even better by using `else`.
172+
But we can make it even better by using `else`.
173173

174174
```py
175175
its_raining = True

0 commit comments

Comments
 (0)