Skip to content

Commit 0d1c841

Browse files
committed
doc tweak again
1 parent 35823b4 commit 0d1c841

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ y = [5, 6, missing]
3232
= [6, 8, 7]
3333
weights = [1, 3, 9]
3434

35-
julia> L1(ŷ, y, weights) 1*abs(6 - 5) + 3*abs(8 - 6)
35+
julia> L1(ŷ, y, weights) 1*l1(6, 5) + 3*l1(8, 6)
3636
true
3737
```
3838

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ L1 = multimeasure(supports_missings_measure(l1), mode=Sum())
2727
y = [5, 6, missing]
2828
ŷ = [6, 8, 7]
2929
weights = [1, 3, 9]
30-
L1(ŷ, y, weights) ≈ 1*abs(6 - 5) + 3*abs(8 - 6)
30+
L1(ŷ, y, weights) ≈ 1*l1(6, 5) + 3*l1(8, 6)
3131
```
3232

3333
```@example 01

0 commit comments

Comments
 (0)