Skip to content

Commit 34a9306

Browse files
committed
This is a breaking release!
1 parent 8eefc80 commit 34a9306

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "FixedPointDecimals"
22
uuid = "fb4d412d-6eee-574d-9565-ede6634db7b0"
33
authors = ["Fengyang Wang <fengyang.wang.0@gmail.com>", "Curtis Vogt <curtis.vogt@gmail.com>"]
4-
version = "0.4.4"
4+
version = "0.5.0"
55

66
[deps]
77
Parsers = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"

src/FixedPointDecimals.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ end
356356
Base.div(x::FD, y::FD) = Base.checked_div(x, y)
357357
Base.fld(x::FD, y::FD) = Base.checked_fld(x, y)
358358
Base.cld(x::FD, y::FD) = Base.checked_cld(x, y)
359-
# There is not checked_fld1, so this is implemented here:
359+
# There is no checked_fld1, so this is implemented here:
360360
function Base.fld1(x::FD{T,f}, y::FD{T,f}) where {T, f}
361361
C = coefficient(FD{T, f})
362362
# Note: fld1() will already throw for divide-by-zero and typemin(T) ÷ -1.

0 commit comments

Comments
 (0)