Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions en/Plugins/Getting started/Anatomy of a plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class ExamplePlugin extends Plugin {
async onload() {
// Configure resources needed by the plugin.
}
async onunload() {
onunload() {
// Release any resources configured by the plugin.
}
}
Expand All @@ -33,7 +33,7 @@ export default class ExamplePlugin extends Plugin {
async onload() {
console.log('loading plugin')
}
async onunload() {
onunload() {
console.log('unloading plugin')
}
}
Expand Down