Skip to content

Commit

Permalink
fix punctuation typo ember-learn#588
Browse files Browse the repository at this point in the history
  • Loading branch information
jenweber authored and lenoraporter committed Jul 19, 2020
1 parent 60c636d commit a5d9b87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/release/models/relationships.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export default class PaymentMethodCc extends PaymentMethod {

get obfuscatedIdentifier() {
return `**** **** **** ${this.last4}`;
})
}
}
```

Expand All @@ -206,7 +206,7 @@ export default class PaymentMethodPaypal extends PaymentMethod {
let last5 = this.linkedEmail.split('').reverse().slice(0, 5).reverse().join('');

return `••••${last5}`;
})
}
}
```

Expand Down

0 comments on commit a5d9b87

Please sign in to comment.