Skip to content

Commit

Permalink
chore(docs): run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Jun 22, 2021
1 parent 6826764 commit e5f9f21
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/JestObjectAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ module.exports = {
return a * b;
},
asyncFunction: async function asyncSquare(a, b) {
const result = await a * b;
const result = (await a) * b;
return result;
},
class: new (class Bar {
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-25.x/JestObjectAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ module.exports = {
return a * b;
},
asyncFunction: async function asyncSquare(a, b) {
const result = await a * b;
const result = (await a) * b;
return result;
},
class: new (class Bar {
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-26.x/JestObjectAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ module.exports = {
return a * b;
},
asyncFunction: async function asyncSquare(a, b) {
const result = await a * b;
const result = (await a) * b;
return result;
},
class: new (class Bar {
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-27.0/JestObjectAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ module.exports = {
return a * b;
},
asyncFunction: async function asyncSquare(a, b) {
const result = await a * b;
const result = (await a) * b;
return result;
},
class: new (class Bar {
Expand Down

0 comments on commit e5f9f21

Please sign in to comment.