Skip to content

Commit

Permalink
Update mutators.md with DoWhile mutator
Browse files Browse the repository at this point in the history
  • Loading branch information
sidz committed Nov 3, 2020
1 parent e51c17f commit 547ec26
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/guide/mutators.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ infection.json:
| Foreach_ | foreach ($someVar as ...); | foreach ([] as ...); |
| For_ | for ($i=0; $i < 10; $i++); | for ($i=0; false; $i++); |
| While_ | while ($condition); | while (false); |
| DoWhile | do [} while ($condition); | do [} while (false); |

### Sorting

Expand Down

0 comments on commit 547ec26

Please sign in to comment.