You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by di...@apache.org on 2009/12/14 21:20:29 UTC

svn commit: r890468 - in /incubator/lucene.net/trunk/C#/src: Lucene.Net/Analysis/CharStream.cs Lucene.Net/Analysis/ISOLatin1AccentFilter.cs Lucene.Net/Analysis/StopAnalyzer.cs Lucene.Net/Analysis/TeeTokenFilter.cs Test/Analysis/BaseTokenStreamTestCase.cs

Author: digy
Date: Mon Dec 14 20:19:49 2009
New Revision: 890468

URL: http://svn.apache.org/viewvc?rev=890468&view=rev
Log:
Some more XML documentation clean up

Modified:
    incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/CharStream.cs
    incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/ISOLatin1AccentFilter.cs
    incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/StopAnalyzer.cs
    incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/TeeTokenFilter.cs
    incubator/lucene.net/trunk/C#/src/Test/Analysis/BaseTokenStreamTestCase.cs

Modified: incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/CharStream.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Lucene.Net/Analysis/CharStream.cs?rev=890468&r1=890467&r2=890468&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/CharStream.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/CharStream.cs Mon Dec 14 20:19:49 2009
@@ -28,6 +28,7 @@
 	/// removal or insertion of characters, so that the offsets
 	/// reported in the tokens match the character offsets of the
 	/// original Reader.
+    /// </summary>
 	public abstract class CharStream:System.IO.StreamReader
 	{
         public CharStream(System.IO.StreamReader reader) : base(reader.BaseStream)

Modified: incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/ISOLatin1AccentFilter.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Lucene.Net/Analysis/ISOLatin1AccentFilter.cs?rev=890468&r1=890467&r2=890468&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/ISOLatin1AccentFilter.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/ISOLatin1AccentFilter.cs Mon Dec 14 20:19:49 2009
@@ -25,7 +25,7 @@
 	/// <summary> A filter that replaces accented characters in the ISO Latin 1 character set 
 	/// (ISO-8859-1) by their unaccented equivalent. The case will not be altered.
 	/// <p/>
-	/// For instance, '&agrave;' will be replaced by 'a'.
+	/// For instance, '&amp;agrave;' will be replaced by 'a'.
 	/// <p/>
 	/// 
 	/// </summary>

Modified: incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/StopAnalyzer.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Lucene.Net/Analysis/StopAnalyzer.cs?rev=890468&r1=890467&r2=890468&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/StopAnalyzer.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/StopAnalyzer.cs Mon Dec 14 20:19:49 2009
@@ -30,7 +30,7 @@
 	/// You must specify the required {@link Version} compatibility when creating
 	/// StopAnalyzer:
 	/// <ul>
-	/// <li>As of 2.9, position increments are preserved
+	/// <li>As of 2.9, position increments are preserved</li>
 	/// </ul>
 	/// </summary>
 	

Modified: incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/TeeTokenFilter.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Lucene.Net/Analysis/TeeTokenFilter.cs?rev=890468&r1=890467&r2=890468&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/TeeTokenFilter.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Lucene.Net/Analysis/TeeTokenFilter.cs Mon Dec 14 20:19:49 2009
@@ -42,7 +42,7 @@
 	/// d.add(new Field("f3", final3));
 	/// d.add(new Field("f4", final4));
 	/// </pre>
-	/// In this example, <code>sink1</code> and <code>sink2<code> will both get tokens from both
+	/// In this example, <code>sink1</code> and <code>sink2</code> will both get tokens from both
 	/// <code>reader1</code> and <code>reader2</code> after whitespace tokenizer
 	/// and now we can further wrap any of these in extra analysis, and more "sources" can be inserted if desired.
 	/// It is important, that tees are consumed before sinks (in the above example, the field names must be

Modified: incubator/lucene.net/trunk/C#/src/Test/Analysis/BaseTokenStreamTestCase.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Test/Analysis/BaseTokenStreamTestCase.cs?rev=890468&r1=890467&r2=890468&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Test/Analysis/BaseTokenStreamTestCase.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Test/Analysis/BaseTokenStreamTestCase.cs Mon Dec 14 20:19:49 2009
@@ -26,7 +26,7 @@
 {
 	
 	/// <summary> Base class for all Lucene unit tests that use TokenStreams.  
-	/// <p>
+	/// <p/>
 	/// This class runs all tests twice, one time with {@link TokenStream#setOnlyUseNewAPI} <code>false</code>
 	/// and after that one time with <code>true</code>.
 	/// </summary>