summaryrefslogtreecommitdiff
path: root/candle-pyo3/py_src/candle/nn/container.py
diff options
context:
space:
mode:
Diffstat (limited to 'candle-pyo3/py_src/candle/nn/container.py')
-rw-r--r--candle-pyo3/py_src/candle/nn/container.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/candle-pyo3/py_src/candle/nn/container.py b/candle-pyo3/py_src/candle/nn/container.py
index 15ed8dd2..6ece31b6 100644
--- a/candle-pyo3/py_src/candle/nn/container.py
+++ b/candle-pyo3/py_src/candle/nn/container.py
@@ -363,7 +363,7 @@ class ModuleList(Module):
self.add_module(str(offset + i), module)
return self
- # remove forward alltogether to fallback on Module's _forward_unimplemented
+ # remove forward altogether to fallback on Module's _forward_unimplemented
class ModuleDict(Module):
@@ -480,4 +480,4 @@ class ModuleDict(Module):
# that's too cumbersome to type correctly with overloads, so we add an ignore here
self[m[0]] = m[1] # type: ignore[assignment]
- # remove forward alltogether to fallback on Module's _forward_unimplemented
+ # remove forward altogether to fallback on Module's _forward_unimplemented