From 5203eaa5a3a9c1c0a9ca6f4af603c032e82bca1e Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Mon, 20 Jan 2025 18:38:57 +0100 Subject: [PATCH] Fix typo Signed-off-by: Christian Wolf --- developer_manual/prologue/security.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/prologue/security.rst b/developer_manual/prologue/security.rst index 8c5ab35d6..6840454eb 100644 --- a/developer_manual/prologue/security.rst +++ b/developer_manual/prologue/security.rst @@ -260,7 +260,7 @@ Always validate the URL before redirecting if the requested URL is on the same d CORS ---- -`Cross-origin resource sharing (CORS) `_ (see also on `MDN `__) is a method impleneted by browser to access resources from different domains at the same time. +`Cross-origin resource sharing (CORS) `_ (see also on `MDN `__) is a method implemented by browser to access resources from different domains at the same time. Assume, there is a website published on host A. The URL would for example be https://A/path/to/index.html. If there is a _different_ host B that serves a resource (e.g. an image file) as https://B/assets/image.jpg, the index file on host A could simply link to the image on B.