Skip to content

Commit 473ba79

Browse files
committed
Small fixes
1 parent a29e9ba commit 473ba79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/lecture_03/conditions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ end
133133
compare (generic function with 1 method)
134134
```
135135

136-
In the example above, the variable `z` equals `y` if the expression` x <y` evaluates as `true`. Otherwise, the variable `z` equals` x`.
136+
In the example above, the variable `z` equals `y` if the expression` x < y` evaluates as `true`. Otherwise, the variable `z` equals` x`.
137137

138138
```jldoctest conditions
139139
julia> compare(1, 2.3)

docs/src/lecture_04/functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ x = -1, y = -2
753753
-3
754754
```
755755

756-
However, it is usually better to create an actual anonymous function beforehand.
756+
However, it is usually better to create an actual function beforehand.
757757

758758
```jldoctest anonym; output = false
759759
function f(x, y)

0 commit comments

Comments
 (0)