Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update description of integer Inline Constant Mutator to match code #118

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion quickstart/mutators.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ are converted to byte code.
| Constant Type | Mutation
|--------------------------|---
| `boolean` | replace the unmutated value `true` with `false` and replace the unmutated value `false` with `true`
| `integer` `byte` `short` | replace the unmutated value `1` with `0`, `-1` with `1`, `5` with `-1` or otherwise increment the unmutated value by one. <sup id="fnref1">[1](#fn1)</sup>
| `integer` `byte` `short` | replace the unmutated value `1` with `0`, `Byte.MAX_VALUE` with `Byte.MIN_VALUE`, `Short.MAX_VALUE` with `Short.MIN_VALUE` or otherwise increment the unmutated value by one. <sup id="fnref1">[1](#fn1)</sup>
| `long` | replace the unmutated value `1` with `0`, otherwise increment the unmutated value by one.
| `float` | replace the unmutated values `1.0` and `2.0` with `0.0` and replace any other value with `1.0` <sup id="fnref2">[2](#fn2)</sup>
| `double` | replace the unmutated value `1.0` with `0.0` and replace any other value with `1.0` <sup id="fnref3">[3](#fn3)</sup>
Expand Down