about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2020-10-06 14:53:08 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2020-10-06 14:58:37 +0200
commit4b43d01399112ca1731cd35b9cc9f4a429942c5d (patch)
tree9b49afeaf7dfc3e26b3da231de71b4ba79133854
parentede3a8402c2f0a5c4ea90d9f05bd8e417f778d4a (diff)
downloadfocaccia-miasm-4b43d01399112ca1731cd35b9cc9f4a429942c5d.tar.gz
focaccia-miasm-4b43d01399112ca1731cd35b9cc9f4a429942c5d.zip
Fix tipo
-rw-r--r--doc/locationdb/locationdb.ipynb2
-rw-r--r--miasm/arch/aarch64/sem.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/locationdb/locationdb.ipynb b/doc/locationdb/locationdb.ipynb
index e09d88e9..4425b3ad 100644
--- a/doc/locationdb/locationdb.ipynb
+++ b/doc/locationdb/locationdb.ipynb
@@ -12,7 +12,7 @@
     "- a `LocKey` can have an optional *offset*.\n",
     "- a `LocKey` can have multiple symbol names\n",
     "- two `Lockey`s cannot share an identic offset\n",
-    "- two `LocKey`s cannot share a symol name\n",
+    "- two `LocKey`s cannot share a symbol name\n",
     "\n",
     "Below are manipulations of the `LocationDB`"
    ]
diff --git a/miasm/arch/aarch64/sem.py b/miasm/arch/aarch64/sem.py
index a03eedda..6629cf0d 100644
--- a/miasm/arch/aarch64/sem.py
+++ b/miasm/arch/aarch64/sem.py
@@ -1855,11 +1855,11 @@ def nop():
 
 @sbuild.parse
 def dsb(arg1):
-    """Data Syncronization Barrier"""
+    """Data Synchronization Barrier"""
 
 @sbuild.parse
 def isb(arg1):
-    """Instruction Syncronization Barrier"""
+    """Instruction Synchronization Barrier"""
 
 @sbuild.parse
 def dmb(arg1):