Rename =^ to 'starts-with' (#5407)

This commit is contained in:
JT
2022-05-02 19:20:07 +12:00
committed by GitHub
parent 1f7d3498cd
commit 4a69819f9a
3 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ impl Display for Operator {
Operator::Pow => write!(f, "**"),
Operator::LessThanOrEqual => write!(f, "<="),
Operator::GreaterThanOrEqual => write!(f, ">="),
Operator::StartsWith => write!(f, "=^"),
Operator::StartsWith => write!(f, "starts-with"),
}
}
}