You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by sy...@apache.org on 2016/09/11 21:30:49 UTC

[18/50] [abbrv] lucenenet git commit: Updated comments.

Updated comments.


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/0f10c9f5
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/0f10c9f5
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/0f10c9f5

Branch: refs/heads/master
Commit: 0f10c9f5424f579861f8bb86a241aab7de3f0821
Parents: 1e7576a
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Tue Aug 2 14:48:49 2016 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Fri Sep 2 22:30:44 2016 +0700

----------------------------------------------------------------------
 Lucene.Net.QueryParser/Classic/ParseException.cs   | 4 ++--
 Lucene.Net.QueryParser/Simple/SimpleQueryParser.cs | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/0f10c9f5/Lucene.Net.QueryParser/Classic/ParseException.cs
----------------------------------------------------------------------
diff --git a/Lucene.Net.QueryParser/Classic/ParseException.cs b/Lucene.Net.QueryParser/Classic/ParseException.cs
index 0ccaddd..161fa95 100644
--- a/Lucene.Net.QueryParser/Classic/ParseException.cs
+++ b/Lucene.Net.QueryParser/Classic/ParseException.cs
@@ -24,7 +24,7 @@ namespace Lucene.Net.QueryParser.Classic
 	/// <summary> 
     /// This exception is thrown when parse errors are encountered.
 	/// You can explicitly create objects of this exception type by
-	/// calling the method generateParseException in the generated
+	/// calling the method GenerateParseException in the generated
 	/// parser.
 	/// 
 	/// You can modify this class to customize your error reporting
@@ -34,7 +34,7 @@ namespace Lucene.Net.QueryParser.Classic
 	public class ParseException : Exception
 	{
         /// <summary>
-        /// This constructor is used by the method "generateParseException"
+        /// This constructor is used by the method "GenerateParseException"
         /// in the generated parser.  Calling this constructor generates
         /// a new object of this type with the fields "currentToken",
         /// "expectedTokenSequences", and "tokenImage" set.

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/0f10c9f5/Lucene.Net.QueryParser/Simple/SimpleQueryParser.cs
----------------------------------------------------------------------
diff --git a/Lucene.Net.QueryParser/Simple/SimpleQueryParser.cs b/Lucene.Net.QueryParser/Simple/SimpleQueryParser.cs
index 8607d27..1029c8b 100644
--- a/Lucene.Net.QueryParser/Simple/SimpleQueryParser.cs
+++ b/Lucene.Net.QueryParser/Simple/SimpleQueryParser.cs
@@ -95,7 +95,7 @@ namespace Lucene.Net.QueryParser.Simple
         /** Map of fields to query against with their weights */
         protected readonly IDictionary<string, float> weights;
 
-        // TODO: Make these into a [Flags] enum??
+        // TODO: Make these into a [Flags] enum in .NET??
         /** flags to the parser (to turn features on/off) */
         protected readonly int flags;