Fix deprecated tag

This commit is contained in:
Alexey Vanin 2023-11-27 14:42:20 +03:00
parent 4aeabb2967
commit 1511bdeedd

View file

@ -4,7 +4,7 @@ func Sum(a, b int) int {
return a + b
}
// Deprecate: use MulFloat
// Deprecated: use MulFloat
func Mul(a, b int) int {
return a * b
}