mirror of
https://github.com/labs42io/clean-code-typescript.git
synced 2025-04-18 15:13:34 +00:00
fix: added a missing semicolon
This commit is contained in:
parent
0658746e22
commit
728585b35e
1 changed files with 1 additions and 1 deletions
|
@ -847,7 +847,7 @@ if (subscription.isTrial || account.balance > 0) {
|
|||
|
||||
```ts
|
||||
function canActivateService(subscription: Subscription, account: Account) {
|
||||
return subscription.isTrial || account.balance > 0
|
||||
return subscription.isTrial || account.balance > 0;
|
||||
}
|
||||
|
||||
if (canActivateService(subscription, account)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue