From 626894c5bf93127a94db1ce737abd754cc59903f Mon Sep 17 00:00:00 2001
From: Nicolas Marsic <marsic@temf.tu-darmstadt.de>
Date: Wed, 13 Sep 2017 15:17:41 +0200
Subject: [PATCH] typo

---
 bin/args.py | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/bin/args.py b/bin/args.py
index edfff47..aa1d113 100644
--- a/bin/args.py
+++ b/bin/args.py
@@ -10,7 +10,7 @@ See the LICENSE.txt and README.md for more license and copyright information.
 import argparse
 
 def parse():
-    """Parses the python script arguments
+    """Parses python script arguments
 
     Returns an argparse
     """
@@ -38,7 +38,7 @@ def parse():
     parser.add_argument("-nodes", type=int, default=100,
                         help="number of nodes for trapezoidal rule")
     parser.add_argument("-maxIt", type=int, default=10,
-                        help="maximam number of iterations")
+                        help="maximum number of iterations")
     parser.add_argument("-lStart", type=int, default=4,
                         help="initial size of col(A0)")
     parser.add_argument("-lStep", type=int, default=3,
@@ -66,8 +66,7 @@ desc = ("a non-linear eigenvalue solver " +
 
 
 class MyFormatter(argparse.HelpFormatter):
-    """ Custom Formatter
-    """
+    """ Custom Formatter"""
 
     def __init__(self, prog):
         super(MyFormatter, self).__init__(prog,
-- 
GitLab