From 721ef23acd07a52c294ab9bef955d4f66e974afe Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Wed, 6 Jan 2021 02:14:07 -0500 Subject: [PATCH] Fix whitespace --- docs/src/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index 22e55ec..79c9ff9 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -32,7 +32,7 @@ A = [1 2 3; 4 5 6] B = [7 8 9 10; 11 12 13 14; 15 16 17 18] -C = Octavian.matmul(A, B) # (multi-threaded) multiply A×B and return the result +C = Octavian.matmul(A, B) # (multi-threaded) multiply A×B and return the result C == A * B ```