From 346248251e1697e8d7e154c8d18430c446c1e503 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 28 Feb 2026 20:56:57 -0800 Subject: [PATCH] typos --- test/fuzz-libghostty/README.md | 6 +++--- test/fuzz-libghostty/build.zig | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/fuzz-libghostty/README.md b/test/fuzz-libghostty/README.md index 8afc8c07d..9243459fb 100644 --- a/test/fuzz-libghostty/README.md +++ b/test/fuzz-libghostty/README.md @@ -120,8 +120,8 @@ deduplication from `afl-cmin`. ### Corpus directories -| Directory | Contents | -|------------------------|--------------------------------------------------| -| `corpus/initial/` | Hand-written seed inputs for `afl-fuzz -i` | +| Directory | Contents | +| ------------------------ | ----------------------------------------------- | +| `corpus/initial/` | Hand-written seed inputs for `afl-fuzz -i` | | `corpus/vt-parser-cmin/` | Output of `afl-cmin` (edge-deduplicated corpus) | | `corpus/vt-parser-min/` | Output of `afl-tmin` (individually minimized) | diff --git a/test/fuzz-libghostty/build.zig b/test/fuzz-libghostty/build.zig index cc1ec60ce..e200f9739 100644 --- a/test/fuzz-libghostty/build.zig +++ b/test/fuzz-libghostty/build.zig @@ -40,7 +40,7 @@ pub fn build(b: *std.Build) void { }; // Build a C entrypoint with afl-cc that links against the generated - // static Zig library. afl-cc is expecte to be on the PATH. + // static Zig library. afl-cc is expected to be on the PATH. const exe = afl.addInstrumentedExe(b, lib); // Runner to simplify running afl-fuzz