Skip to content

Commit

Permalink
Fix typo in documentation (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
gahaas authored Sep 11, 2024
1 parent 148e143 commit 9161d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Docs/HowFuzzilliWorks.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ FuzzIL has a notion of "guarded" operations, which are operations that guard aga
```javascript
try { v3(v5, v6); } catch {};
```
As the try-catch blocks generated for guarded opetations can negatively influence the program's behavior (as described above), they should be used sparingly. Furthermore, Fuzzilli tries to convert guarded operations into unguarded ones during Minimization and through the FixupMutator, both of which are discussed further later on in this document.
As the try-catch blocks generated for guarded operations can negatively influence the program's behavior (as described above), they should be used sparingly. Furthermore, Fuzzilli tries to convert guarded operations into unguarded ones during Minimization and through the FixupMutator, both of which are discussed further later on in this document.

FuzzIL has a number of properties:
* A FuzzIL program is simply a list of instructions.
Expand Down

0 comments on commit 9161d13

Please sign in to comment.