From d53521c0f987f2219d4b31a97fc44a82e650bd91 Mon Sep 17 00:00:00 2001 From: Jeff Date: Tue, 11 Feb 2025 09:30:07 -0500 Subject: [PATCH] Fix typo --- README.md | 2 +- bench/addictive_addition/run.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index a150179..4a7e620 100644 --- a/README.md +++ b/README.md @@ -203,7 +203,7 @@ the only way to use Dust is to clone the repository and build it from source. See the `bench` directory for the benchmark programs. -### Additctive Addition +### Addictive Addition This benchmark was taken from a paper[^3] that compares stack-based and register-based virtual machines. The benchmark is a simple program that increments a variable 5,000,000 times. Dust uses a diff --git a/bench/addictive_addition/run.sh b/bench/addictive_addition/run.sh index b230aa4..e960101 100644 --- a/bench/addictive_addition/run.sh +++ b/bench/addictive_addition/run.sh @@ -3,7 +3,6 @@ hyperfine \ --shell none \ --prepare 'sync' \ --warmup 5 \ - --export-markdown results.md \ '../../target/release/dust addictive_addition.ds' \ 'node addictive_addition.js' \ 'deno addictive_addition.js' \