Browse Source

fix: typo: % instead of @ for a builtin function

David Hain 1 year ago
parent
commit
4dbd056100
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/094_c_math.zig

+ 1 - 1
exercises/094_c_math.zig

@@ -13,7 +13,7 @@
 // How could we do that? A good method is to use the modulo function.
 // How could we do that? A good method is to use the modulo function.
 // But if we write "765.2 % 360", it only works with float values
 // But if we write "765.2 % 360", it only works with float values
 // that are known at compile time.
 // that are known at compile time.
-// In Zig, we would use %mod(a, b) instead.
+// In Zig, we would use @mod(a, b) instead.
 //
 //
 // Let us now assume that we cannot do this in Zig, but only with
 // Let us now assume that we cannot do this in Zig, but only with
 // a C function from the standard library. In the library "math",
 // a C function from the standard library. In the library "math",