Blob Blame History Raw
From 50367dce47f933be2dce74e7dba3a86797dbff7a Mon Sep 17 00:00:00 2001
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
Date: Thu, 21 Mar 2024 13:11:48 -0400
Subject: [PATCH] Fix a typo (division/divsion) in README.md

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 7a9e889..8e9cd72 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
 Integer division is one of the slowest instructions on most CPUs e.g. on
 current x64 CPUs a 64-bit integer division has a latency of up to 90 clock
 cycles whereas a multiplication has a latency of only 3 clock cycles.
-libdivide allows you to replace expensive integer divsion instructions by
+libdivide allows you to replace expensive integer division instructions by
 a sequence of shift, add and multiply instructions that will calculate
 the integer division much faster.