diff --git a/internal/website/website.go b/internal/website/website.go
index 4e5fb85e018a57109688d59876dd97975244ce98..eaabde3debbebc3b8438e451fcbc2129a95a884a 100644
--- a/internal/website/website.go
+++ b/internal/website/website.go
@@ -6,6 +6,7 @@ import (
 
 // website is the html source of the website.
 // It is possible to have this in a serperate .html file and include it at compile time but for simplicity and portability we just keep it here inline.
+// No React, Vue, etc. or jQuery is used.
 // Also there are some Visual Studio Code plugins in development that should enable html syntax highlighting here.
 var website = []byte(`
 <!DOCTYPE html>
@@ -277,7 +278,7 @@ var website = []byte(`
 
 // websiteHandleFunc just serves the website
 func websiteHandleFunc(w http.ResponseWriter, r *http.Request) {
-	// The "/" pattern (in main.go) matches everything that isnt handled by somebody else, so  we need to check
+	// The "/" pattern (in main.go) matches everything that isn't handled by somebody else, so  we need to check
 	// that we're at the root here.
 
 	if r.URL.Path != "/" {