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 2006/09/09 12:26:02 UTC

svn commit: r441775 - /incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java

Author: ehatcher
Date: Sat Sep  9 03:26:01 2006
New Revision: 441775

URL: http://svn.apache.org/viewvc?view=rev&rev=441775
Log:
Correct typo in comment

Modified:
    incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java

Modified: incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java
URL: http://svn.apache.org/viewvc/incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java?view=diff&rev=441775&r1=441774&r2=441775
==============================================================================
--- incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java (original)
+++ incubator/solr/trunk/src/java/org/apache/solr/request/JSONResponseWriter.java Sat Sep  9 03:26:01 2006
@@ -697,8 +697,8 @@
     // bytes into the string.
     //
     // Use single quoted strings for safety since no evaluation is done within them.
-    // Also, there are very few escapes recognized in a singe quoted string, so
-    // only escape the backspace and single quote.
+    // Also, there are very few escapes recognized in a single quoted string, so
+    // only escape the backslash and single quote.
     writer.write('\'');
     // it might be more efficient to use a stringbuilder or write substrings
     // if writing chars to the stream is slow.