From 5b606f939d7fb49830ab765585ca997bd44cfd76 Mon Sep 17 00:00:00 2001
From: georg <georg@riseup.net>
Date: Tue, 2 Oct 2018 15:59:39 +0000
Subject: [PATCH] fix typo

---
 libmat2/office.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libmat2/office.py b/libmat2/office.py
index 4348d9b..91bf2a6 100644
--- a/libmat2/office.py
+++ b/libmat2/office.py
@@ -19,7 +19,7 @@ def _parse_xml(full_path: str):
 
     namespace_map = dict()
     for _, (key, value) in ET.iterparse(full_path, ("start-ns", )):
-        # The ns[0-9]+ namespaces are reserved for interal usage, so
+        # The ns[0-9]+ namespaces are reserved for internal usage, so
         # we have to use an other nomenclature.
         if re.match('^ns[0-9]+$', key, re.I):  # pragma: no cover
             key = 'mat' + key[2:]
-- 
GitLab