| author | |
| committer | |
| log | d6f2af378abe7467657f6fbf8133b995e5f55142 |
| tree | ec67d09e705a947a423d7ac3b3e025eebc3a5428 |
| parent | 46ddd5f5f4db7977010f78129fade7dfa5b9d8d3 |
| signature | Commit is signed but in an unrecognized format. |
broken by c2db077574be82 files changed, 2 insertions(+), 2 deletions(-)
doc/docgen.zig+1-1| ... | ... | @@ -620,7 +620,7 @@ const TermState = enum { |
| 620 | 620 | test "term color" { |
| 621 | 621 | const input_bytes = "A\x1b[32;1mgreen\x1b[0mB"; |
| 622 | 622 | const result = try termColor(std.debug.global_allocator, input_bytes); |
| 623 | testing.expectEqualSlices(u8, "A<span class=\"t32\">green</span>B", result)); | |
| 623 | testing.expectEqualSlices(u8, "A<span class=\"t32\">green</span>B", result); | |
| 624 | 624 | } |
| 625 | 625 | |
| 626 | 626 | fn termColor(allocator: *mem.Allocator, input: []const u8) ![]u8 { |
doc/langref.html.in+1-1| ... | ... | @@ -4627,7 +4627,7 @@ test "fibonacci" { |
| 4627 | 4627 | <p> |
| 4628 | 4628 | What if we fix the base case, but put the wrong value in the {#syntax#}assert{#endsyntax#} line? |
| 4629 | 4629 | </p> |
| 4630 | {#code_begin|test_err|encountered @panic at compile-time#} | |
| 4630 | {#code_begin|test_err|unable to evaluate constant expression#} | |
| 4631 | 4631 | const assert = @import("std").debug.assert; |
| 4632 | 4632 | |
| 4633 | 4633 | fn fibonacci(index: i32) i32 { |