diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py
index ef3219b38ec89c717c832e4edaee3c939602f67f..2e8009d3c32a58453ea72dab98131fa0ce5ec88c 100644
--- a/synapse/handlers/auth.py
+++ b/synapse/handlers/auth.py
@@ -121,6 +121,10 @@ class AuthHandler(BaseHandler):
 
     @defer.inlineCallbacks
     def add_oob_auth(self, stagetype, authdict, clientip):
+        """
+        Adds the result of out-of-band authentication into an existing auth
+        session. Currently used for adding the result of fallback auth.
+        """
         if stagetype not in self.checkers:
             raise LoginError(400, "", Codes.MISSING_PARAM)
         if 'session' not in authdict: