diff --git a/x/1-5-Events/eventloop.cpp b/x/1-5-Events/eventloop.cpp
index de4f6edbc35c7a7cd5eb6a4e7d943527b0782d6a..a673f6042bfe8d2a1e635835247908294b96e572 100644
--- a/x/1-5-Events/eventloop.cpp
+++ b/x/1-5-Events/eventloop.cpp
@@ -219,7 +219,7 @@ void initX(int argc, char* argv[], XInfo& xinfo) {
     XSetBackground( xinfo.display, xinfo.gc, background );
     XSetForeground( xinfo.display, xinfo.gc, foreground );
 
-    // Tell the window manager what input events you want.
+    // Tell the base window system what input events you want.
     // ButtomMotionMask: The client application receives MotionNotify events only when at least one button is pressed.
     XSelectInput( xinfo.display, xinfo.window,
                   ButtonPressMask | KeyPressMask | ButtonMotionMask );