Fix Wrong Priorization (higher prio -> higher number)
This commit is contained in:
+2
-2
@@ -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],
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user