From 42533931fac747ab99e5ce7f8d16e0d0c8b40c06 Mon Sep 17 00:00:00 2001 From: Chris Offner Date: Sat, 2 Nov 2024 14:06:34 +0100 Subject: [PATCH] Fix typo "it's" -> "its" (#1555) --- docs/src/usage/lazy_evaluation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/usage/lazy_evaluation.rst b/docs/src/usage/lazy_evaluation.rst index 466edaaed..8fd855efa 100644 --- a/docs/src/usage/lazy_evaluation.rst +++ b/docs/src/usage/lazy_evaluation.rst @@ -109,7 +109,7 @@ Here is a concrete example: An important behavior to be aware of is when the graph will be implicitly evaluated. Anytime you ``print`` an array, convert it to an -:obj:`numpy.ndarray`, or otherwise access it's memory via :obj:`memoryview`, +:obj:`numpy.ndarray`, or otherwise access its memory via :obj:`memoryview`, the graph will be evaluated. Saving arrays via :func:`save` (or any other MLX saving functions) will also evaluate the array.