diff --git a/src/caoscrawler/converters.py b/src/caoscrawler/converters.py
index f8e758c60565c47e74c7447bcb8046c27e069da5..552ff061519139c689feb0817870800b741ca87b 100644
--- a/src/caoscrawler/converters.py
+++ b/src/caoscrawler/converters.py
@@ -807,7 +807,7 @@ class TableConverter(Converter):
 
     The rows can be matched using a DictDictElementConverter.
     """
-    @ abstractmethod
+    @abstractmethod
     def get_options(self):
         """
         This method needs to be overwritten by the specific table converter to provide
diff --git a/src/doc/converters.rst b/src/doc/converters.rst
index 277abd888d900ae4518fae151f737d151beeb132..74090cf8bcea065602ed8faa526cd1aa34cd342e 100644
--- a/src/doc/converters.rst
+++ b/src/doc/converters.rst
@@ -87,7 +87,7 @@ Typical Subtree converters
 These converters expect `match_name` and `match_value` in their definition
 which allow to match the key and the value, respectively.
 
-Note that their are defaults for accepting other types. For example,
+Note that there are defaults for accepting other types. For example,
 DictFloatElementConverter also accepts DictIntegerElements. The default
 behavior can be adjusted with the fields `accept_text`, `accept_int`,
 `accept_float`, and `accept_bool`.