Fix Wrong Priorization (higher prio -> higher number)

This commit is contained in:
2026-06-18 11:45:04 +02:00
parent ee3343e47f
commit 5a007851ff
2 changed files with 10 additions and 11 deletions
+2 -2
View File
@@ -3,14 +3,14 @@ use core::str::{self, FromStr};
pub struct Parser {
pub curr: u32,
pub buffer: [u8; 100],
pub buffer: [u8; 1000],
}
impl Parser {
pub fn new() -> Self {
Self {
curr: 0,
buffer: [0_u8; 100],
buffer: [0_u8; 1000],
}
}