We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a0fa376 + 1ee2bc2 commit 59ea5aeCopy full SHA for 59ea5ae
1 file changed
src/parser/expr.rs
@@ -99,7 +99,7 @@ pub enum ExprKind {
99
100
/// An array or tuple access, for example:
101
/// `lhs[idx]`
102
- /// As both almost work identical to each other expersion level we handle the cases for each container in the
+ /// As both almost work identical to each other expression level we handle the cases for each container in the
103
/// circuit writers and typecheckers
104
ArrayOrTupleAccess {
105
container: Box<Expr>,
@@ -178,7 +178,7 @@ impl Expr {
178
span,
179
}) => Ident::new(value, span),
180
_ => Err(Error::new(
181
- "parse indentifier",
+ "parse identifier",
182
ErrorKind::UnexpectedError("cannot qualify a non-identifier"),
183
184
))?,
0 commit comments