From 1bf0f2a9a817a342edc1313e12afcd14f57ff37f Mon Sep 17 00:00:00 2001 From: motchy Date: Sat, 23 Jan 2021 19:19:45 +0900 Subject: [PATCH] Fixed a spelling error. --- doc/src/manual/arrays.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/arrays.md b/doc/src/manual/arrays.md index 1db77f107aabd..8e49e29a1508a 100644 --- a/doc/src/manual/arrays.md +++ b/doc/src/manual/arrays.md @@ -735,7 +735,7 @@ julia> LinearIndices(A)[2, 2] 5 ``` -It's important to note that there's a very large assymmetry in the performance +It's important to note that there's a very large asymmetry in the performance of these conversions. Converting a linear index to a set of cartesian indices requires dividing and taking the remainder, whereas going the other way is just multiplies and adds. In modern processors, integer division can be 10-50 times