summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--exercises/019_functions2.zig6
1 files 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.
}