Bläddra i källkod

Fixed spelling mistakes

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@57970 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert 11 år sedan
förälder
incheckning
764605330c
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. 3 3
      lib/python/script/core.py

+ 3 - 3
lib/python/script/core.py

@@ -810,11 +810,11 @@ def _text_to_key_value_dict(filename, sep=":", val_sep=","):
 def compare_key_value_text_files(filename_a, filename_b, sep=":",
 def compare_key_value_text_files(filename_a, filename_b, sep=":",
                                  val_sep=",", precision=0.000001):
                                  val_sep=",", precision=0.000001):
     """
     """
-    !Compare two key-value text two files
+    !Compare two key-value text files
 
 
     This method will print a warning in case keys that are present in the first
     This method will print a warning in case keys that are present in the first
     file are not present in the second one.
     file are not present in the second one.
-    The comparison method tries to convert the values into there native format
+    The comparison method tries to convert the values into their native format
     (float, int or string) to allow correct comparison.
     (float, int or string) to allow correct comparison.
 
 
     An example key-value text file may have this content:
     An example key-value text file may have this content:
@@ -829,7 +829,7 @@ def compare_key_value_text_files(filename_a, filename_b, sep=":",
     @param filenmae_b name of the second key-value text file
     @param filenmae_b name of the second key-value text file
     @param sep character that separates the keys and values, default is ":"
     @param sep character that separates the keys and values, default is ":"
     @param val_sep character that separates the values of a single key, default is ","
     @param val_sep character that separates the values of a single key, default is ","
-    @param precision precision with which the floating point values are compares
+    @param precision precision with which the floating point values are compared
 
 
     @return True if full or almost identical, False if different
     @return True if full or almost identical, False if different
     """
     """