From 0fd02bf52b7f4cb77d838e739f3e75f97f923bd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krystian=20Rosi=C5=84ski?= Date: Fri, 24 May 2019 20:54:09 +0200 Subject: [PATCH] Fix a typo in a tutorial example --- docs/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index af5523f..96f8f7f 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -530,7 +530,7 @@ In Hy: .. code-block:: clj (defclass Customer [models.Model] - [name (models.CharField :max-length 255}) + [name (models.CharField :max-length 255) address (models.TextField) notes (models.TextField)])