Skip to content

Commit

Permalink
Fix typo in method name (toogle -> toggle)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Aug 30, 2023
1 parent 3d825b1 commit aff9457
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/drawLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ export class DrawLayer {
* @param {string} id The id of the group.
* @returns {boolean} False if the group cannot be found.
*/
toogleGroupVisibility(id) {
toggleGroupVisibility(id) {
// get the group
const group = this.#drawController.getGroup(id);
if (typeof group === 'undefined') {
Expand Down

0 comments on commit aff9457

Please sign in to comment.