Skip to content

Commit

Permalink
docs: fix a typo (#11921)
Browse files Browse the repository at this point in the history
  • Loading branch information
huyenltnguyen authored Oct 2, 2021
1 parent a5ee117 commit b9fc8ac
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/TimerMocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ describe('infiniteTimerGame', () => {
// (but not any new timers that get created during that process)
jest.runOnlyPendingTimers();

// At this point, our 1-second timer should have fired it's callback
// At this point, our 1-second timer should have fired its callback
expect(callback).toBeCalled();

// And it should have created a new timer to start the game over in
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-25.x/TimerMocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ describe('infiniteTimerGame', () => {
// (but not any new timers that get created during that process)
jest.runOnlyPendingTimers();

// At this point, our 1-second timer should have fired it's callback
// At this point, our 1-second timer should have fired its callback
expect(callback).toBeCalled();

// And it should have created a new timer to start the game over in
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-26.x/TimerMocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ describe('infiniteTimerGame', () => {
// (but not any new timers that get created during that process)
jest.runOnlyPendingTimers();

// At this point, our 1-second timer should have fired it's callback
// At this point, our 1-second timer should have fired its callback
expect(callback).toBeCalled();

// And it should have created a new timer to start the game over in
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-27.0/TimerMocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ describe('infiniteTimerGame', () => {
// (but not any new timers that get created during that process)
jest.runOnlyPendingTimers();

// At this point, our 1-second timer should have fired it's callback
// At this point, our 1-second timer should have fired its callback
expect(callback).toBeCalled();

// And it should have created a new timer to start the game over in
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-27.1/TimerMocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ describe('infiniteTimerGame', () => {
// (but not any new timers that get created during that process)
jest.runOnlyPendingTimers();

// At this point, our 1-second timer should have fired it's callback
// At this point, our 1-second timer should have fired its callback
expect(callback).toBeCalled();

// And it should have created a new timer to start the game over in
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-27.2/TimerMocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ describe('infiniteTimerGame', () => {
// (but not any new timers that get created during that process)
jest.runOnlyPendingTimers();

// At this point, our 1-second timer should have fired it's callback
// At this point, our 1-second timer should have fired its callback
expect(callback).toBeCalled();

// And it should have created a new timer to start the game over in
Expand Down

0 comments on commit b9fc8ac

Please sign in to comment.