From 8f39b8975980d597ab0a97a4615cc5563fc7244d Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 22:42:44 -0500 Subject: [PATCH] spelling: overridden Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- mlx/primitives.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlx/primitives.h b/mlx/primitives.h index 747b26c10..f9508096f 100644 --- a/mlx/primitives.h +++ b/mlx/primitives.h @@ -84,7 +84,7 @@ class Primitive { /** Print the primitive. */ virtual void print(std::ostream& os) = 0; - /** Equivalence check defaults to false unless overriden by the primitive */ + /** Equivalence check defaults to false unless overridden by the primitive */ virtual bool is_equivalent(const Primitive& other) const { return false; }