Skip to content

Commit

Permalink
chore: fix "outstanding" typo. (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxi Peszano authored Jul 7, 2022
1 parent 3728e2a commit 5d6cc86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ Extract fragment of code into its own function named after its purpose.
```javascript
function printOwing(invoice) {
printBanner()
let outstannding = calculateOutstanding()
let outstanding = calculateOutstanding()

// print details
console.log(`name: ${invoice.customer}`)
Expand All @@ -197,7 +197,7 @@ to
```javascript
function printOwing(invoice) {
printBanner()
let outstannding = calculateOutstanding()
let outstanding = calculateOutstanding()
printDetails(outstanding)

function printDetails(outstanding) {
Expand Down

0 comments on commit 5d6cc86

Please sign in to comment.