diff --git a/IPython/core/interactiveshell.py b/IPython/core/interactiveshell.py
index f46c8f4..fe3b6bf 100644
--- a/IPython/core/interactiveshell.py
+++ b/IPython/core/interactiveshell.py
@@ -2055,7 +2055,8 @@ class InteractiveShell(SingletonConfigurable):
 
         # Register Magic Aliases
         mman = self.magics_manager
-        # surely, this can't be were magics aliases should be defined?
+        # FIXME: magic aliases should be defined by the Magics classes
+        # or in MagicsManager, not here
         mman.register_alias('ed', 'edit')
         mman.register_alias('hist', 'history')
         mman.register_alias('rep', 'recall')