You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2010/12/14 02:25:35 UTC

svn commit: r1048891 - /httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/params/HttpParams.java

Author: sebb
Date: Tue Dec 14 01:25:34 2010
New Revision: 1048891

URL: http://svn.apache.org/viewvc?rev=1048891&view=rev
Log:
Javadoc

Modified:
    httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/params/HttpParams.java

Modified: httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/params/HttpParams.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/params/HttpParams.java?rev=1048891&r1=1048890&r2=1048891&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/params/HttpParams.java (original)
+++ httpcomponents/httpcore/trunk/httpcore/src/main/java/org/apache/http/params/HttpParams.java Tue Dec 14 01:25:34 2010
@@ -31,8 +31,8 @@ package org.apache.http.params;
  * HttpParams interface represents a collection of immutable values that define
  * a runtime behavior of a component. HTTP parameters should be simple objects:
  * integers, doubles, strings, collections and objects that remain immutable
- * at runtime. HttpParams is expected to be used in the 'write once - ready
- * many' mode. Once initialized HTTP parameters are not expected to mutate in
+ * at runtime. HttpParams is expected to be used in 'write once - read many' mode. 
+ * Once initialized, HTTP parameters are not expected to mutate in
  * the course of HTTP message processing.
  * <p>
  * The purpose of this intreface is to define a behavior of other components.