From 06583b506dbcddff24fd4a05ad77095091ef455e Mon Sep 17 00:00:00 2001 From: Cristian Garcia Date: Fri, 14 Jul 2023 09:22:22 -0500 Subject: [PATCH] Update docs/guides/haiku_migration_guide.rst Co-authored-by: 8bitmp3 <19637339+8bitmp3@users.noreply.github.com> --- docs/guides/haiku_migration_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/haiku_migration_guide.rst b/docs/guides/haiku_migration_guide.rst index 1bd9d17579..42dfd5e989 100644 --- a/docs/guides/haiku_migration_guide.rst +++ b/docs/guides/haiku_migration_guide.rst @@ -791,7 +791,7 @@ we are telling ``nn.scan`` create different parameters for each step and slice t return y Notice how in Flax we pass ``None`` as the second argument to ``ScanBlock`` and ignore -its second output, these represent the inputs/outputs per-step but they are ``None`` +its second output. These represent the inputs/outputs per-step but they are ``None`` because in this case we don't have any. Initializing each model is the same as in previous examples. In this case,