From 84344018be80af6a5a7649fa9f5c0802186af211 Mon Sep 17 00:00:00 2001 From: Patrick Kidger <33688385+patrick-kidger@users.noreply.github.com> Date: Sun, 10 Dec 2023 13:44:26 -0800 Subject: [PATCH] Doc fix --- equinox/nn/_sequential.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/equinox/nn/_sequential.py b/equinox/nn/_sequential.py index a2224d3d..e2f5e8a8 100644 --- a/equinox/nn/_sequential.py +++ b/equinox/nn/_sequential.py @@ -23,7 +23,7 @@ def is_stateful(self) -> bool: The default implementation just returns True, but subclasses may override this to provide custom logic if the layer is only "maybe stateful". (E.g. if they - optioanlly use stateful sublayers themselves.) + optionally use stateful sublayers themselves.) **Arguments:**