Commit f4e3631655

Manlio Perillo <manlio.perillo@gmail.com>
2025-04-09 08:46:13
std.zon.parse: Fix typo in test "std.zon parse bool"
Replace "Correct floats" with "Correct bools".
1 parent 4fc7836
Changed files (1)
lib
std
lib/std/zon/parse.zig
@@ -2380,7 +2380,7 @@ test "std.zon enum literals" {
 test "std.zon parse bool" {
     const gpa = std.testing.allocator;
 
-    // Correct floats
+    // Correct bools
     try std.testing.expectEqual(true, try fromSlice(bool, gpa, "true", null, .{}));
     try std.testing.expectEqual(false, try fromSlice(bool, gpa, "false", null, .{}));