From feaffb6327989f3623e618d010a4b013e96eee38 Mon Sep 17 00:00:00 2001 From: Addison Crump Date: Sun, 6 Nov 2022 18:18:12 +0100 Subject: [PATCH] fix prettier complaint --- fuzz/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/README.md b/fuzz/README.md index 4106d60627f..a3a1e77f183 100644 --- a/fuzz/README.md +++ b/fuzz/README.md @@ -41,7 +41,7 @@ In this way, this fuzzer can identify correctness issues present in the parser. The VM fuzzer, located in [vm-implied.rs](fuzz_targets/vm-implied.rs), identifies crash cases in the VM. It does so by generating an arbitrary AST, converting it to source code (to remove invalid inputs), then executing that source code. Because we are not comparing against any invariants other than "does it crash", this fuzzer will only discover faults -which cause the VM to terminate unexpectedly, e.g. as a result of a panic. It will not discover logic errors present in +which cause the VM to terminate unexpectedly, e.g. as a result of a panic. It will not discover logic errors present in the VM. To ensure that the VM does not attempt to execute an infinite loop, Boa is restricted to a finite number of instructions