Skip to content

Commit

Permalink
docs: Fix missing parenthesis in writing-views.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethnrk authored and PIG208 committed Aug 14, 2024
1 parent 2bfdccd commit c41a0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/writing-views.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c41a0f0

Please sign in to comment.