aboutsummaryrefslogtreecommitdiff
path: root/programming
diff options
context:
space:
mode:
authoralexpdp7 <alex@pdp7.net>2025-03-25 19:26:03 +0100
committeralexpdp7 <alex@corcoles.net>2025-03-25 19:26:31 +0100
commit13948106195d11b6b94dc57435b47a74cc344dfc (patch)
tree3346d3ca0a6dd6e131221046d8bd51319656e562 /programming
parent9c3a83be5f83d3cb6fecf10b270cef0ef90a8117 (diff)
Fix typo
Diffstat (limited to 'programming')
-rw-r--r--programming/python/about_django.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/programming/python/about_django.md b/programming/python/about_django.md
index f33708bc..4a406048 100644
--- a/programming/python/about_django.md
+++ b/programming/python/about_django.md
@@ -32,7 +32,7 @@ Many similar tools exist, but I have not found any other tool that can do so muc
* The Django admin has a simple, but useful for many scenarios permissions functionality, where editing certain entities is restricted to groups of users.
-The Django admin is frequently a big boost during the early development of database-backed applications, and sometimes I can provide value during a big part of the life of an application.
+The Django admin is frequently a big boost during the early development of database-backed applications, and sometimes it can provide value during a big part of the life of an application.
Additionally, traditionally when working with frameworks without an equivalent facility, the friction of adding an interface to edit a piece of data can be large.
Developers pressed for time might opt to hardcode the data in the source code of the application, requiring code changes to modify certain behaviors of the application.