Skip to content

Commit 05381f9

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 564d841 + 0b5d756 commit 05381f9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-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.6.0"
4+
version = "0.6.1"
55

66
[deps]
77
BitIntegers = "c3b6d118-76ef-56ca-8cc7-ebb389d030a1"

src/FixedPointDecimals.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@ const FMAFloat = Union{Float16, Float32, Float64, BigFloat}
4747

4848
for fn in [:trunc, :floor, :ceil]
4949
fnname = Symbol(fn, "mul")
50+
fnname_str = String(fnname)
5051
opp_fn = fn == :floor ? :ceil : :floor
5152

5253
@eval begin
5354
@doc """
54-
$($fnname)(I, x, y) :: I
55+
$($fnname_str)(I, x, y) :: I
5556
5657
Compute `$($fn)(I, x * y)`, returning the result as type `I`. For
5758
floating point values, this function can be more accurate than

0 commit comments

Comments
 (0)