Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing spelling error of 'Design Patterns in Typescript' #1760

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion content/lessons/typescript-design-patterns/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Creational patterns are related to the creation of new objects.

### Singleton

A singleton is an object that can only be instantiated once. It is useful fo implementing a global object that can be accessed from anywhere in the application.
A singleton is an object that can only be instantiated once. It is useful for implementing a global object that can be accessed from anywhere in the application.

{{< file "ts" "software.ts" >}}
```typescript
Expand Down