You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by mh...@apache.org on 2011/09/05 20:55:20 UTC

[Lucene.Net] svn commit: r1165389 - /incubator/lucene.net/branches/Lucene.Net_4e/src/Lucene.Net/Analysis/TokenFilter.cs

Author: mherndon
Date: Mon Sep  5 18:55:19 2011
New Revision: 1165389

URL: http://svn.apache.org/viewvc?rev=1165389&view=rev
Log:
fixing conflits with wickedsoftware v4e branch

Modified:
    incubator/lucene.net/branches/Lucene.Net_4e/src/Lucene.Net/Analysis/TokenFilter.cs

Modified: incubator/lucene.net/branches/Lucene.Net_4e/src/Lucene.Net/Analysis/TokenFilter.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/branches/Lucene.Net_4e/src/Lucene.Net/Analysis/TokenFilter.cs?rev=1165389&r1=1165388&r2=1165389&view=diff
==============================================================================
--- incubator/lucene.net/branches/Lucene.Net_4e/src/Lucene.Net/Analysis/TokenFilter.cs (original)
+++ incubator/lucene.net/branches/Lucene.Net_4e/src/Lucene.Net/Analysis/TokenFilter.cs Mon Sep  5 18:55:19 2011
@@ -28,7 +28,7 @@ namespace Lucene.Net.Analysis
 
     /// <summary>
     /// A <c>TokenFilter</c> is a <see cref="TokenStream"/> that wraps an inner <see cref="TokenStream"/> which
-    /// services the input source for the stream.
+    /// serves as the input source for the stream.
     /// </summary>
     public abstract class TokenFilter : TokenStream
     {
@@ -44,7 +44,7 @@ namespace Lucene.Net.Analysis
         }
 
         /// <summary>
-        /// Gets the inner token stream.
+        /// Gets the inner token stream which is the input source for this stream.
         /// </summary>
         /// <value>The token stream.</value>
         protected virtual TokenStream TokenStream