Merge pull request #155 from yuankunzhang/main

fix: use custom dec_uint in ordinal parsing
This commit is contained in:
Sylvestre Ledru
2025-06-15 11:05:09 +02:00
committed by GitHub
+2 -2
View File
@@ -1,9 +1,9 @@
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
use super::s;
use super::{dec_uint, s};
use winnow::{
ascii::{alpha1, dec_uint},
ascii::alpha1,
combinator::{alt, opt},
ModalResult, Parser,
};