| author | |
| committer | |
| log | f4e3631655c93ba31b768b7d232a305419c0fe67 |
| tree | 714e054dc7ae934a504b6f3e5629d5d45f65403f |
| parent | 4fc783670a0871c43ccf17faf4f17d8a7e07e50c |
Replace "Correct floats" with "Correct bools".1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/zon/parse.zig+1-1| ... | ... | @@ -2380,7 +2380,7 @@ test "std.zon enum literals" { |
| 2380 | 2380 | test "std.zon parse bool" { |
| 2381 | 2381 | const gpa = std.testing.allocator; |
| 2382 | 2382 | |
| 2383 | // Correct floats | |
| 2383 | // Correct bools | |
| 2384 | 2384 | try std.testing.expectEqual(true, try fromSlice(bool, gpa, "true", null, .{})); |
| 2385 | 2385 | try std.testing.expectEqual(false, try fromSlice(bool, gpa, "false", null, .{})); |
| 2386 | 2386 |