Skip to content

Commit 45ed571

Browse files
Remove message parameter from hello method (#359)
This parameter is not used and may be confusing to new developers
1 parent da21710 commit 45ed571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/hello-world/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Now we see that the method doesn't return anything, which is the reason for our
128128

129129
```typescript
130130
class HelloWorld {
131-
static hello(message:string) {
131+
static hello() {
132132
return 'Hello, World!'
133133
}
134134
}

0 commit comments

Comments
 (0)