Bläddra i källkod

Fix several typos / style errors

Alois Mahdal 10 år sedan
förälder
incheckning
d39f199619
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. 3
    3
      sznqalibs/hoover.py

+ 3
- 3
sznqalibs/hoover.py Visa fil

828
 
828
 
829
     Best used as a result bearer from `regression_test`, this class keeps
829
     Best used as a result bearer from `regression_test`, this class keeps
830
     a simple in-memory "database" of errors seen during the regression
830
     a simple in-memory "database" of errors seen during the regression
831
-    test, and methods for interface.
831
+    test, and implements few methods to access the data.
832
 
832
 
833
-    The basic useage is:
833
+    The basic usage is:
834
 
834
 
835
          1. Instantiate (no parameters)
835
          1. Instantiate (no parameters)
836
 
836
 
964
             self._insert(errstr, argset)
964
             self._insert(errstr, argset)
965
 
965
 
966
     def write_stats_csv(self, fname):
966
     def write_stats_csv(self, fname):
967
-        """Write write stats to a simple one row (plus header) CSV."""
967
+        """Write stats to a simple one row (plus header) CSV."""
968
         stats = self.getstats()
968
         stats = self.getstats()
969
         colnames = sorted(stats.keys())
969
         colnames = sorted(stats.keys())
970
         with open(fname, 'a') as fh:
970
         with open(fname, 'a') as fh: