From 10782386254801bee6465e23a43b4ff8ce6a9651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=C5=BEe=20Pe=C4=8Dar?= Date: Wed, 23 Aug 2023 16:56:38 +0100 Subject: [PATCH] Fix copy paste typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7eafe88..3ee4908 100644 --- a/README.md +++ b/README.md @@ -18,13 +18,13 @@ Inspect and run Django Commands in a text-based user interface (TUI), built with pip install django-tui ``` -Add "words_tui" to your INSTALLED_APPS setting like this: +Add "django_tui" to your INSTALLED_APPS setting like this: ```python INSTALLED_APPS = [ ..., - "words_tui", + "django_tui", ] ```