diff --git a/evap/evaluation/templates/base.html b/evap/evaluation/templates/base.html
index 02de803a5..03b2e190d 100644
--- a/evap/evaluation/templates/base.html
+++ b/evap/evaluation/templates/base.html
@@ -183,7 +183,7 @@
document.querySelectorAll(".table-seamless-links [data-url]").forEach(row => {
row.addEventListener("click", event => {
// We navigate via the tag to enable browser behavior for Ctrl-Click. We cannot insert an actual
- // tag, because there cannot be any non-table tags between the for example and .
+ // tag, because there cannot be any non-table tags between for example and .
const anchor = document.createElement("a");
anchor.href = row.dataset.url;
// As `event` is bound to `row`, we need to clone it.