From 9f71d3711e2488df83bd3253381ebc203d7421ec Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Mon, 26 Apr 2021 20:45:19 -0400 Subject: [PATCH] adding enlightenment to 019 (for #50) --- exercises/019_functions2.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/019_functions2.zig b/exercises/019_functions2.zig index 00f33c5..a527ae2 100644 --- a/exercises/019_functions2.zig +++ b/exercises/019_functions2.zig @@ -24,7 +24,7 @@ pub fn main() void { // fn twoToThe(???) u32 { return std.math.pow(u32, 2, my_number); - // std.math.pow(type, a, b) takes a numeric type and two numbers - // of that type and returns "a to the power of b" as that same - // numeric type. + // std.math.pow(type, a, b) takes a numeric type and two + // numbers of that type (or that can coerce to that type) and + // returns "a to the power of b" as that same numeric type. }