fix(docs): fix typo in workspace reference (#9943)

Fix typo in method call `workpace.getProcedureMap()` to `workspace`.
This commit is contained in:
romw314
2026-05-27 22:28:12 +02:00
committed by GitHub
parent c0c0cc55eb
commit 0a458b23e1
@@ -54,7 +54,7 @@ Blockly.Blocks['my_procedure_def'] = {
// Insertion markers reference the model of the original block.
if (this.isInsertionMarker()) return;
this.workpace.getProcedureMap().delete(model.getId());
this.workspace.getProcedureMap().delete(model.getId());
}
}
```