File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 9090pub fn title_case_identifier ( input : Input < ' _ > ) -> ParserResult < ' _ , & str > {
9191 map_res (
9292 recognize ( pair (
93- one_of ( "ABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890 " ) ,
93+ one_of ( "ABCDEFGHIJKLMNOPQRSTUVWXYZ " ) ,
9494 many0 ( alt ( (
9595 preceded ( char ( '-' ) , into_inner ( alphanumeric1) ) ,
9696 into_inner ( alphanumeric1) ,
@@ -268,14 +268,14 @@ pub fn default(input: Input<'_>) -> ParserResult<'_, Option<ASN1Value>> {
268268pub fn uppercase_identifier ( input : Input < ' _ > ) -> ParserResult < ' _ , & str > {
269269 alt ( (
270270 into_inner ( recognize ( pair (
271- one_of ( "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 " ) ,
271+ one_of ( "ABCDEFGHIJKLMNOPQRSTUVWXYZ " ) ,
272272 many1 ( alt ( (
273273 preceded ( char ( '-' ) , one_of ( "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890" ) ) ,
274274 one_of ( "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890" ) ,
275275 ) ) ) ,
276276 ) ) ) ,
277277 terminated (
278- into_inner ( recognize ( one_of ( "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 " ) ) ) ,
278+ into_inner ( recognize ( one_of ( "ABCDEFGHIJKLMNOPQRSTUVWXYZ " ) ) ) ,
279279 peek ( is_not ( "abcdefghijklmnopqrstuvwxyz-" ) ) ,
280280 ) ,
281281 ) )
You can’t perform that action at this time.
0 commit comments