From 00ec01925ea3aa3743c0587369370da31a88e4ba Mon Sep 17 00:00:00 2001 From: Faisal Alsrheed <47912291+Faisal-Alsrheed@users.noreply.github.com> Date: Sat, 12 Aug 2023 12:54:38 +0000 Subject: [PATCH] Fix typo in WhileLoop docstring --- keras_core/ops/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keras_core/ops/core.py b/keras_core/ops/core.py index 38e92ee5b..99904341e 100644 --- a/keras_core/ops/core.py +++ b/keras_core/ops/core.py @@ -230,7 +230,7 @@ def while_loop( loop_vars, maximum_iterations=None, ): - """While loop implemetation. + """While loop implementation. Args: cond: A callable that represents the termination condition of the loop.