You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by eh...@apache.org on 2009/02/09 19:24:44 UTC

svn commit: r742666 - /lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java

Author: ehatcher
Date: Mon Feb  9 18:24:43 2009
New Revision: 742666

URL: http://svn.apache.org/viewvc?rev=742666&view=rev
Log:
comment typo fixes

Modified:
    lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java

Modified: lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java?rev=742666&r1=742665&r2=742666&view=diff
==============================================================================
--- lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java (original)
+++ lucene/solr/trunk/src/webapp/src/org/apache/solr/servlet/SolrRequestParsers.java Mon Feb  9 18:24:43 2009
@@ -114,8 +114,8 @@
     SolrParams params = parser.parseParamsAndFillStreams( req, streams );
     SolrQueryRequest sreq = buildRequestFrom( core, params, streams );
 
-    // Handlers and loggin will want to know the path. If it contains a ':' 
-    // the handler could use it for RESTfull URLs
+    // Handlers and login will want to know the path. If it contains a ':'
+    // the handler could use it for RESTful URLs
     sreq.getContext().put( "path", path );
     return sreq;
   }