diff --git a/stdlib/src/math/math.mojo b/stdlib/src/math/math.mojo index b3e369078a..57d6e91eb8 100644 --- a/stdlib/src/math/math.mojo +++ b/stdlib/src/math/math.mojo @@ -1997,7 +1997,7 @@ fn gcd(*values: Int) -> Int: # ===----------------------------------------------------------------------=== # -fn lcm(owned m: Int, owned n: Int, /) -> Int: +fn lcm(m: Int, n: Int, /) -> Int: """Computes the least common multiple of two integers. Args: