You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/03/17 19:36:34 UTC

[superset] branch master updated: chore(docs): three typos (#23403)

This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 2feb599a0e chore(docs): three typos (#23403)
2feb599a0e is described below

commit 2feb599a0e781074e5c4d5855af0d5a468b3f8ea
Author: Evan Rusackas <ev...@preset.io>
AuthorDate: Fri Mar 17 13:36:17 2023 -0600

    chore(docs): three typos (#23403)
---
 docs/docs/security.mdx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/docs/security.mdx b/docs/docs/security.mdx
index b73e6db572..0c792449fb 100644
--- a/docs/docs/security.mdx
+++ b/docs/docs/security.mdx
@@ -131,7 +131,7 @@ For example, the filters `client_id=4` and `client_id=5`, applied to a role,
 will result in users of that role having `client_id=4` AND `client_id=5`
 added to their query, which can never be true.
 
-### Content Security Policiy (CSP)
+### Content Security Policy (CSP)
 
 [Content Security Policy (CSP)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) is an added
 layer of security that helps to detect and mitigate certain types of attacks, including
@@ -146,7 +146,7 @@ A policy is described using a series of policy directives, each of which describ
 a certain resource type or policy area. You can check possible directives
 [here](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy).
 
-It's extremely important to correclty configure a Content Security Policy when deploying Superset to
+It's extremely important to correctly configure a Content Security Policy when deploying Superset to
 prevent many types of attacks. For that matter, Superset provides the ` TALISMAN_CONFIG` key in `config.py`
 where administrators can define the policy. When running in production mode, Superset will check for the presence
 of a policy and if it's not able to find one, it will issue a warning with the security risks. For environments
@@ -161,7 +161,7 @@ the warning using the `CONTENT_SECURITY_POLICY_WARNING` key in `config.py`.
   default-src 'self' 'unsafe-eval' 'unsafe-inline'
   ```
 
-* Some dashbaords load images using data URIs and require `data:` in their `img-src`
+* Some dashboards load images using data URIs and require `data:` in their `img-src`
 
   ```
   img-src 'self' data: