We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 783bb10 commit b9a4deeCopy full SHA for b9a4dee
crates/pgt_workspace/src/workspace/server/parsed_document.rs
@@ -35,7 +35,7 @@ impl ParsedDocument {
35
let cst_db = TreeSitterStore::new();
36
let ast_db = PgQueryStore::new();
37
let sql_fn_db = SQLFunctionBodyStore::new();
38
- let annoation_db = AnnotationStore::new();
+ let annotation_db = AnnotationStore::new();
39
40
doc.iter().for_each(|(stmt, _, content)| {
41
cst_db.add_statement(&stmt, content);
@@ -47,7 +47,7 @@ impl ParsedDocument {
47
ast_db,
48
cst_db,
49
sql_fn_db,
50
- annoation_db,
+ annotation_db,
51
}
52
53
0 commit comments