Skip to content

Commit

Permalink
Add TODO(#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
datawater committed Jun 19, 2024
1 parent 70fa311 commit 9ebb623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pgn/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ pub fn parse_pgn(input_filename: &str) -> Result<Vec<PgnToken>, Box<dyn Error +

line_char_index += 1;
} else if char == b'$' {
// TODO: Support NAG parsing
// TODO(#13): Support NAG parsing

while line_char_index < line_len && bytes[line_char_index] != b' ' {
line_char_index += 1;
Expand Down

0 comments on commit 9ebb623

Please sign in to comment.