Skip to content

Commit

Permalink
asm: Fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Granddave committed Jan 18, 2024
1 parent 2fede9b commit 515ed16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assembler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use clap::Args;
/// [
/// Token { token: TokenType::Identifier, literal: "LDA", line_number: 1, },
/// Token { token: TokenType::LiteralNumber, literal: "#", line_number: 1, },
/// Token { token: TokenType::Hex, literal: "C8", line_number: 1, },
/// Token { token: TokenType::Hex, literal: "10", line_number: 1, },
/// Token { token: TokenType::Eof, literal: "".to_string(), line_number: 2, },
/// ]
pub mod lexer;
Expand Down

0 comments on commit 515ed16

Please sign in to comment.