diff --git a/httpclient/src/main/java/org/apache/http/client/methods/HttpUriRequest.java b/httpclient/src/main/java/org/apache/http/client/methods/HttpUriRequest.java
index 5ea236e3a..3686cb57c 100644
--- a/httpclient/src/main/java/org/apache/http/client/methods/HttpUriRequest.java
+++ b/httpclient/src/main/java/org/apache/http/client/methods/HttpUriRequest.java
@@ -51,6 +51,15 @@ public interface HttpUriRequest extends HttpRequest {
/**
* Returns the URI this request uses, such as
* http://example.org/path/to/file
.
+ *
+ * Note that this is the original URI, and is
+ * unaffected by redirects.
+ *
+ * To find the final URI after any redirects have been processed,
+ * please see the section entitled
+ * HTTP execution context
+ * in the
+ * HttpClient Tutorial
*/
URI getURI();