Skip to content

Commit

Permalink
Fix fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
Richienb committed Aug 18, 2020
1 parent 10baab1 commit 7a7ea18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fixtures/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class ExampleExtension implements ScratchExtension {
getInfo(): ExtensionMetadata {
return {
id: "Example Extension",
id: "ExampleExtension",
name: "Greeter",
blocks: [{
opcode: "greet",
Expand All @@ -20,7 +20,7 @@ class ExampleExtension implements ScratchExtension {
}
}

helloWorld({ name }: { name: string }): string {
greet({ name }: { name: string }): string {
return `Hello ${name}!`
}
}
Expand Down

0 comments on commit 7a7ea18

Please sign in to comment.