Index: docs/middleware.txt
===================================================================
--- docs/middleware.txt	(revision 5776)
+++ docs/middleware.txt	(working copy)
@@ -172,8 +172,9 @@
 ``process_request()`` should return either ``None`` or an ``HttpResponse``
 object. If it returns ``None``, Django will continue processing this request,
 executing any other middleware and, then, the appropriate view. If it returns
-an ``HttpResponse`` object, Django won't bother calling ANY other middleware or
-the appropriate view; it'll return that ``HttpResponse``.
+an ``HttpResponse`` object, Django won't bother calling ANY remaining request,
+view, or exception middleware methods or the appropriate view; it'll return
+that ``HttpResponse``.
 
 process_view
 ------------
@@ -191,8 +192,9 @@
 return either ``None`` or an ``HttpResponse`` object. If it returns ``None``,
 Django will continue processing this request, executing any other
 ``process_view()`` middleware and, then, the appropriate view. If it returns an
-``HttpResponse`` object, Django won't bother calling ANY other middleware or
-the appropriate view; it'll return that ``HttpResponse``.
+``HttpResponse`` object, Django won't bother calling ANY remaining request,
+view, or exception middleware methods or the appropriate view; it'll return
+that ``HttpResponse``.
 
 process_response
 ----------------
