Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion concepts/conditionals/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The else statement needs to be used with an if statement and cannot be used on i
To declare an else statement you use the `else` keyword after an if statements curly braces, followed by the code to execute in curly braces.

```swift
Let precipitationInMM = 0.5
let precipitationInMM = 0.5
if precipitationInMM > 0.5 {
print("You will need an umbrella")
} else {
Expand Down
2 changes: 1 addition & 1 deletion concepts/conditionals/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The else statement needs to be used with an if statement and cannot be used on i
To declare an else statement you use the `else` keyword after an if statements curly braces, followed by the code to execute in curly braces.

```swift
Let precipitationInMM = 0.5
let precipitationInMM = 0.5
if precipitationInMM > 0.5 {
print("You will need an umbrella")
} else {
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/vehicle-purchase/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The else statement needs to be used with an if statement and cannot be used on i
To declare an else statement you use the `else` keyword after an if statements curly braces, followed by the code to execute in curly braces.

```swift
Let precipitationInMM = 0.5
let precipitationInMM = 0.5
if precipitationInMM > 0.5 {
print("You will need an umbrella")
} else {
Expand Down