From 656a21cbde631956d450206fc91f7b0ca3ff0be9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez?= Date: Wed, 20 Mar 2024 23:19:34 +0100 Subject: [PATCH] typo --- docs/source/views.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/views.md b/docs/source/views.md index 8a753551..3a7aa555 100644 --- a/docs/source/views.md +++ b/docs/source/views.md @@ -325,7 +325,7 @@ Classes that derive from `UnicornView` can include a `Meta` class that provides ### exclude -By default, all public attributes of the component are included in the context of the Django template and available to JavaScript. One way to protect internal-only data is to prefix the atteibute name with `_` to indicate it should stay private. +By default, all public attributes of the component are included in the context of the Django template and available to JavaScript. One way to protect internal-only data is to prefix the attribute name with `_` to indicate it should stay private. ```python # hello_state.py