Skip to content

Commit

Permalink
Use semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
rugpanov committed Jun 19, 2018
1 parent 8b0a86e commit ed2dde2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singleton/singleton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace SingletonPattern {
Singleton.singleton = new Singleton();
}
// return the singleton object
return Singleton.singleton
return Singleton.singleton;
}
}
}

0 comments on commit ed2dde2

Please sign in to comment.