From 22f2e1806c80f40bc9b31b1c0db974feea653d25 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 7 Oct 2020 05:54:08 +1100 Subject: [PATCH] docs: fix simple typo, wiew -> view There is a small typo in src/sregex/sre_vm_thompson_jit.c. Should read `view` rather than `wiew`. --- src/sregex/sre_vm_thompson_jit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sregex/sre_vm_thompson_jit.c b/src/sregex/sre_vm_thompson_jit.c index 3c4f0fc..adda6c5 100644 --- a/src/sregex/sre_vm_thompson_jit.c +++ b/src/sregex/sre_vm_thompson_jit.c @@ -105,7 +105,7 @@ sre_vm_thompson_jit_compile(sre_pool_t *pool, sre_program_t *prog, /* * write generated machine code to a temporary file. - * wiew with objdump or ndisasm + * view with objdump or ndisasm */ f = fopen("/tmp/thompson-jit.bin", "wb"); fwrite(code->handler, codesz, 1, f);