Skip to content

Commit 190e22f

Browse files
committed
Fix comment for integer input for ALGOL 60
1 parent 996959c commit 190e22f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

archive/a/algol60/even-odd.alg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ begin
2323
- "\n" maps to 15
2424
- " " maps to 16
2525
- null byte maps to 17
26-
- invalid byte maps 0;
26+
- invalid byte maps to 0;
2727
integer ch;
2828
inchar(0, "0123456789+-\t\r\n ", ch);
2929
if ch < 1 then ch := -2

archive/a/algol60/factorial.alg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ begin
2323
- "\n" maps to 15
2424
- " " maps to 16
2525
- null byte maps to 17
26-
- invalid byte maps 0;
26+
- invalid byte maps to 0;
2727
integer ch;
2828
inchar(0, "0123456789+-\t\r\n ", ch);
2929
if ch < 1 then ch := -2

archive/a/algol60/fibonacci.alg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ begin
2323
- "\n" maps to 15
2424
- " " maps to 16
2525
- null byte maps to 17
26-
- invalid byte maps 0;
26+
- invalid byte maps to 0;
2727
integer ch;
2828
inchar(0, "0123456789+-\t\r\n ", ch);
2929
if ch < 1 then ch := -2

archive/a/algol60/fraction-math.alg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ begin
3333
- " " maps to 16
3434
- "/" maps to 17
3535
- null byte maps to 18
36-
- invalid byte maps 0;
36+
- invalid byte maps to 0;
3737
integer ch;
3838
inchar(0, "0123456789+-\t\r\n /", ch);
3939
if ch < 1 then ch := -2

archive/a/algol60/josephus-problem.alg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ begin
2323
- "\n" maps to 15
2424
- " " maps to 16
2525
- null byte maps to 17
26-
- invalid byte maps 0;
26+
- invalid byte maps to 0;
2727
integer ch;
2828
inchar(0, "0123456789+-\t\r\n ", ch);
2929
if ch < 1 then ch := -2

archive/a/algol60/palindromic-number.alg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ begin
2323
- "\n" maps to 15
2424
- " " maps to 16
2525
- null byte maps to 17
26-
- invalid byte maps 0;
26+
- invalid byte maps to 0;
2727
integer ch;
2828
inchar(0, "0123456789+-\t\r\n ", ch);
2929
if ch < 1 then ch := -2

archive/a/algol60/prime-number.alg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ begin
2323
- "\n" maps to 15
2424
- " " maps to 16
2525
- null byte maps to 17
26-
- invalid byte maps 0;
26+
- invalid byte maps to 0;
2727
integer ch;
2828
inchar(0, "0123456789+-\t\r\n ", ch);
2929
if ch < 1 then ch := -2

archive/a/algol60/zeckendorf.alg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ begin
2323
- "\n" maps to 15
2424
- " " maps to 16
2525
- null byte maps to 17
26-
- invalid byte maps 0;
26+
- invalid byte maps to 0;
2727
integer ch;
2828
inchar(0, "0123456789+-\t\r\n ", ch);
2929
if ch < 1 then ch := -2

0 commit comments

Comments
 (0)