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 dd10cee + 479f088 commit fd97703Copy full SHA for fd97703
‎src/error/typesharp_error/solution.rs‎
@@ -11,7 +11,7 @@ pub trait PossibleSolutionGenerator {
11
/// Keep in mind that all AST given here is during Parsing.
12
fn is_corrective(&self, tree: ast::ASTStatement) -> bool;
13
14
- /// Should check the given AST and correct it (if acclible) and return None otherwise.
+ /// Should check the given AST and correct it (if accessible) and return None otherwise.
15
fn try_correct(&self, tree: ast::ASTStatement) -> Option<PossibleSolution>;
16
17
/// Displays the correct line of code.
@@ -29,4 +29,4 @@ pub struct PossibleSolution {
29
pub loc: Span,
30
pub solutions: Vec<ast::ASTStatement>,
31
pub typ: PossibleSolutionType
32
-}
+}
0 commit comments