fix: use custom dec_uint in ordinal parsing

This commit is contained in:
yuankunzhang
2025-06-15 12:21:07 +08:00
parent 1a6a6f688a
commit 41a53a2610
+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,
};