From 748a56aae91761be45cf3272273fca9448a09c7e Mon Sep 17 00:00:00 2001 From: Kenneth Rodrigues Date: Tue, 30 Jul 2024 15:09:32 +0530 Subject: [PATCH] docs: Fix missing parenthesis in writing-views.md. --- docs/tutorials/writing-views.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/writing-views.md b/docs/tutorials/writing-views.md index b092ac6460..1b6ce5e68e 100644 --- a/docs/tutorials/writing-views.md +++ b/docs/tutorials/writing-views.md @@ -251,7 +251,7 @@ function is such that all user input validation happens in the view code (i.e. all 400 type errors are thrown there), and the actions code is responsible for atomically executing the change (this is usually signalled by having the actions function have a name starting with -`do_`. So in most cases, errors in an actions function will be the +`do_`). So in most cases, errors in an actions function will be the result of an operational problem (e.g., lost connection to the database) and lead to a 500 error. If an actions function is responsible for validation as well, it should have a name starting