]> Dogcows Code - chaz/carfire/blobdiff - CarFire/CarFire/CarFire/Parse.cs
New map method Map.GetStartingPositionForPlayer to, uh, get the starting positions...
[chaz/carfire] / CarFire / CarFire / CarFire / Parse.cs
index be11a9ac506046827f06441b31f67aea3adab07c..bb2e9c1115d6d10bfdde9ed296a34cb468bd4add 100644 (file)
@@ -10,7 +10,7 @@ namespace CarFire
     /// <summary>\r
     /// Class with handy static methods taking strings and returning objects\r
     /// parsed from those strings.  For all of these functions, white space is\r
-    /// generally ignored, but any superfluous characters will make the parse fail.\r
+    /// generally ignored, but superfluous characters are not allowed.\r
     /// </summary>\r
     public class Parse\r
     {\r
@@ -30,7 +30,7 @@ namespace CarFire
         /// Parses a comment of an INI file.\r
         /// </summary>\r
         /// <param name="line">Text.</param>\r
-        /// <returns>The comment.</returns>\r
+        /// <returns>The comment, or null if parsing failed.</returns>\r
         public static string IniComment(string line)\r
         {\r
             Match match = Regex.Match(line, @"^;\s*(.*)\s*$");\r
This page took 0.024553 seconds and 4 git commands to generate.