Skip to content

Commit

Permalink
fix: typo in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sang4lv committed Jan 31, 2024
1 parent d96f026 commit d702f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ export class HelloService {
private readonly eggObjectFactory: EggObjectFactory;

async hello(): Promise<string[]> {
const helloImpls = await this.eggObjectFactory.getEggObjects(AbstractHello, HelloType.BAR);
const helloImpls = await this.eggObjectFactory.getEggObjects(AbstractHello);
const messages = [];
for await (const helloImpl of helloImpls) {
messages.push(helloImpl.hello());
Expand Down

0 comments on commit d702f82

Please sign in to comment.