authorgravatar for jhc@dismail.deJimmi Holst Christensen <jhc@dismail.de> 2018-03-31 14:00:49+02:00
committergravatar for jhc@dismail.deJimmi Holst Christensen <jhc@dismail.de> 2018-03-31 14:00:49+02:00
log596f4b6002d3ed29adc8777b0417952cb79ad888
tree98040eca6efd42cfca48b24dec8427f106b414a1
parent5118caf5ab2599ca61b57f68a89aa2d094f51981

Fixed review commented code


1 files changed, 4 insertions(+), 4 deletions(-)

std/zig/parser.zig+4-4
...@@ -1750,9 +1750,9 @@ test "zig fmt" {...@@ -1750,9 +1750,9 @@ test "zig fmt" {
17501750
1751 try testCanonical(1751 try testCanonical(
1752 \\test "test array" {1752 \\test "test array" {
1753 \\ const a : [2]u8 = [2]u8{ 1, 2 };1753 \\ const a: [2]u8 = [2]u8{ 1, 2 };
1754 \\ const a : [2]u8 = []u8{ 1, 2 };1754 \\ const a: [2]u8 = []u8{ 1, 2 };
1755 \\ const a : [0]u8 = []u8{};1755 \\ const a: [0]u8 = []u8{};
1756 \\}1756 \\}
1757 \\1757 \\
1758 );1758 );
...@@ -1782,7 +1782,7 @@ test "zig fmt" {...@@ -1782,7 +1782,7 @@ test "zig fmt" {
1782 );1782 );
17831783
1784 try testCanonical(1784 try testCanonical(
1785 \\test "percendence" {1785 \\test "precendence" {
1786 \\ a!b();1786 \\ a!b();
1787 \\ (a!b)();1787 \\ (a!b)();
1788 \\ !a!b;1788 \\ !a!b;