From 91eba8e4856ba9a629408e18a9d0c1e79a22dab0 Mon Sep 17 00:00:00 2001 From: Alex Shepard Date: Thu, 11 Apr 2024 17:02:06 -0700 Subject: [PATCH] fix for grammatical typo in docs (#988) thanks for mlx! --- 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 e41fcbe0b..bd64f919c 100644 --- a/docs/src/usage/lazy_evaluation.rst +++ b/docs/src/usage/lazy_evaluation.rst @@ -18,7 +18,7 @@ describe below. Transforming Compute Graphs ^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Lazy evaluation let's us record a compute graph without actually doing any +Lazy evaluation lets us record a compute graph without actually doing any computations. This is useful for function transformations like :func:`grad` and :func:`vmap` and graph optimizations.