Skip to content

Commit

Permalink
Fix a couple docs examples
Browse files Browse the repository at this point in the history
  • Loading branch information
robhudson committed Jul 11, 2024
1 parent cf2ae8c commit a8bfeff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/decorators.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,14 +133,14 @@ are in use, as shown below.
@csp(
{
"default_src": [SELF],
"default-src": [SELF],
"img-src": ["imgsrv.com"],
"script-src": ["scriptsrv.com", "googleanalytics.com", UNSAFE_INLINE],
}
)
@csp(
{
"default_src": [SELF],
"default-src": [SELF],
"img-src": ["imgsrv.com"],
"script-src": ["scriptsrv.com", "googleanalytics.com"],
"frame-src": [SELF],
Expand Down

0 comments on commit a8bfeff

Please sign in to comment.