Skip to content

Commit

Permalink
Fix more link errors
Browse files Browse the repository at this point in the history
  • Loading branch information
skyrod-vactai committed Oct 2, 2023
1 parent 6a0ba98 commit 1147990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ fn parse_helper<Observer: ParseObserver, Iter: Iterator<Item = char> + Clone>(
}
}
// Handle builtin #uuid
else if symbol.namespace == None && symbol.name == "uuid" {
else if symbol.namespace.is_none() && symbol.name == "uuid" {
if let Value::String(uuid_str) = next_success {
let uuid = Uuid::parse_str(&uuid_str).map_err(
|parse_error| {
Expand Down

0 comments on commit 1147990

Please sign in to comment.