Skip to content

Commit

Permalink
fix: Move 'https' AFTER 'url' in 'id' parser rule
Browse files Browse the repository at this point in the history
  • Loading branch information
bbugyi200 committed Aug 31, 2024
1 parent fe6bb53 commit 2bec1b9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion src/zorg/grammar/ZorgFile.g4
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ simple_prop : id COLON COLON simple_prop_value ;
simple_prop_value : id | url ;
inline_prop : '[' id COLON COLON SPACE? id_group (SPACE id_group)* ']';
id_group : id (any_sym+ | id)* ;
id : ID | NUM_ID | PRIORITY | https | date | time | zid | url | LOWER_O | LOWER_X ;
id : ID | NUM_ID | PRIORITY | date | time | zid | url | https | LOWER_O | LOWER_X ;
date : DATE ;
time : TIME ;

Expand Down
Loading

0 comments on commit 2bec1b9

Please sign in to comment.