Skip to content

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
rofrol committed May 19, 2024
1 parent 0c2a837 commit 28ad04e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/02-language_overview_part_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Ponieważ `while` jest prostsze, przyjmując formę `while (warunek) { }`, mamy
var i: usize = 0;
while (i < src.len) {
// odwrotny ukośnik jest używany jako znak uwolnienia (escape sign), więc musimy go uwolnić...
// odwrotnym ukośnikiem.
// odwrotnym ukośnikiem.
if (src[i] == '\\') {
i += 2;
escape_count += 1;
Expand Down

0 comments on commit 28ad04e

Please sign in to comment.