From 2a5a690b92a64d1811c12abeeadbbcbebd0693ce Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:29:23 -0500 Subject: [PATCH] spelling: computation Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- examples/cpp/tutorial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cpp/tutorial.cpp b/examples/cpp/tutorial.cpp index 5dc0e0472..091dfab2d 100644 --- a/examples/cpp/tutorial.cpp +++ b/examples/cpp/tutorial.cpp @@ -57,7 +57,7 @@ void array_basics() { assert(z.shape(0) == 2); assert(z.shape(1) == 2); - // To actually run the compuation you must evaluate `z`. + // To actually run the computation you must evaluate `z`. // Under the hood, mlx records operations in a graph. // The variable `z` is a node in the graph which points to its operation // and inputs. When `eval` is called on an array (or arrays), the array and