Skip to content

Commit

Permalink
Merge pull request #57 from arghyadipchak/main
Browse files Browse the repository at this point in the history
fix: code_128 parsing typo
  • Loading branch information
hschimke authored Oct 27, 2024
2 parents b175313 + dc3b9dd commit f73eb1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/barcode_format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl From<&str> for BarcodeFormat {
BarcodeFormat::CODE_39
}
"code 93" | "code_93" | "code93" => BarcodeFormat::CODE_93,
"code 128" | "code_129" | "code128" | "iso/ied 15417:2007" | "iso/_15417:2007" => {
"code 128" | "code_128" | "code128" | "iso/ied 15417:2007" | "iso/_15417:2007" => {
BarcodeFormat::CODE_128
}
"datamatrix" | "data matrix" | "data_matrix" => BarcodeFormat::DATA_MATRIX,
Expand Down

0 comments on commit f73eb1e

Please sign in to comment.