diff --git a/indra/llcorehttp/_httpinternal.h b/indra/llcorehttp/_httpinternal.h
index 5f966500c9a6ea8be21a8a4ff7053f7cd3930409..97ec5ee1d68dd8633986928d9d0e8b9e3fa44eb4 100644
--- a/indra/llcorehttp/_httpinternal.h
+++ b/indra/llcorehttp/_httpinternal.h
@@ -1,5 +1,5 @@
 /**
- * @file httpinternal.h
+ * @file _httpinternal.h
  * @brief Implementation constants and magic numbers
  *
  * $LicenseInfo:firstyear=2012&license=viewerlgpl$
@@ -44,7 +44,7 @@ namespace LLCore
 {
 
 // Maxium number of policy classes that can be defined.
-// *FIXME:  Currently limited to the default class, extend.
+// *TODO:  Currently limited to the default class, extend.
 const int POLICY_CLASS_LIMIT = 1;
 
 // Debug/informational tracing.  Used both
diff --git a/indra/llcorehttp/_httpreadyqueue.h b/indra/llcorehttp/_httpreadyqueue.h
index 8462b174b5dc047d95ff3cb50bc7eb49303284a5..9cf4b059a12e63139c3c27d53d53fdfba2afd53a 100644
--- a/indra/llcorehttp/_httpreadyqueue.h
+++ b/indra/llcorehttp/_httpreadyqueue.h
@@ -45,6 +45,12 @@ namespace LLCore
 /// important of those rules is that any iterator becomes invalid
 /// on element erasure.  So pay attention.
 ///
+/// If LLCORE_READY_QUEUE_IGNORES_PRIORITY tests true, the class
+/// implements a std::priority_queue interface but on std::deque
+/// behavior to eliminate sensitivity to priority.  In the future,
+/// this will likely become the only behavior or it may become
+/// a run-time election.
+///
 /// Threading:  not thread-safe.  Expected to be used entirely by
 /// a single thread, typically a worker thread of some sort.