소스 검색

Fixed spelling mistakes

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@57970 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert 11 년 전
부모
커밋
764605330c
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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=":",
                                  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
     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.
 
     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 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 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
     """