From 2d20e1b35879bd97acec1c0ec3835ef3919dd32f Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Wed, 15 Mar 2023 11:33:17 +0900 Subject: [PATCH] Fix typo in bench/README.md (#236) occurences -> occurrences --- bench/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/README.md b/bench/README.md index e87c1642..168cb213 100644 --- a/bench/README.md +++ b/bench/README.md @@ -43,5 +43,5 @@ for accessing data (details below). - `fannkuch`: See [*Performing Lisp analysis of the FANNKUCH benchmark*](https://dl.acm.org/doi/10.1145/382109.382124) by Kenneth R. Anderson and Duane Rettig. Benchmark involves generating permutations and repeatedly reversing elements of a list. Codon version is multithreaded with a dynamic schedule via one additional `@par(schedule='dynamic')` line. -- `word_count`: Counts occurences of words in a file using a dictionary. The file should be passed to the benchmark script through the `DATA_WORD_COUNT` environment variable. +- `word_count`: Counts occurrences of words in a file using a dictionary. The file should be passed to the benchmark script through the `DATA_WORD_COUNT` environment variable. - `primes`: Counts the number of prime numbers below a threshold. Codon version is multithreaded with a dynamic schedule via one additional `@par(schedule='dynamic')` line.