From 1ecbebbc1400cfab45010d400529e0f5bc328a68 Mon Sep 17 00:00:00 2001 From: Sebastian Legarraga <64795732+slegarraga@users.noreply.github.com> Date: Sat, 8 Aug 2026 18:08:44 -0400 Subject: [PATCH] docs: fix separate typo in autoencoder docstring Signed-off-by: Sebastian Legarraga <64795732+slegarraga@users.noreply.github.com> --- neuron_explainer/models/autoencoder_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neuron_explainer/models/autoencoder_context.py b/neuron_explainer/models/autoencoder_context.py index d134d3b..d4150fc 100644 --- a/neuron_explainer/models/autoencoder_context.py +++ b/neuron_explainer/models/autoencoder_context.py @@ -12,7 +12,7 @@ @dataclass(frozen=True) class AutoencoderSpec: - """Parameters used in the construction of an AutoencoderConfig object. Seperate so we don't need to validate when constructed""" + """Parameters used in the construction of an AutoencoderConfig object. Separate so we don't need to validate when constructed""" dst: DerivedScalarType autoencoder_path_by_layer_index: dict[LayerIndex, str]