about summary refs log tree commit diff stats
path: root/doc/locationdb/locationdb.ipynb
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2024-03-28 15:31:07 +0100
committerGitHub <noreply@github.com>2024-03-28 15:31:07 +0100
commit1ba37c39b1fa70651a1c7748c5829656cd3e6dea (patch)
treee74b76e29d6618228b67112543943215f0eb011d /doc/locationdb/locationdb.ipynb
parent319229f8675fb3d84655b1701a31eb9064560d3c (diff)
parent46a201ecd64b478fc947d8b1b2e830b767bb66eb (diff)
downloadfocaccia-miasm-1ba37c39b1fa70651a1c7748c5829656cd3e6dea.tar.gz
focaccia-miasm-1ba37c39b1fa70651a1c7748c5829656cd3e6dea.zip
Merge pull request #1474 from DimitriPapadopoulos/codespell
Fix typos found by codespell
Diffstat (limited to 'doc/locationdb/locationdb.ipynb')
-rw-r--r--doc/locationdb/locationdb.ipynb4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/locationdb/locationdb.ipynb b/doc/locationdb/locationdb.ipynb
index 33a18930..09e47ca6 100644
--- a/doc/locationdb/locationdb.ipynb
+++ b/doc/locationdb/locationdb.ipynb
@@ -5,13 +5,13 @@
    "metadata": {},
    "source": [
     "# LocationDB object \n",
-    "The `LocationDB` is the Miasm object responsible of the symbols' management. A `Location` is an object representing a code or data (or anywhere else) position. As the name explicits it, the `LocationDB` is a database of locations. Here are some rules:\n",
+    "The `LocationDB` is the Miasm object responsible of the symbols' management. A `Location` is an object representing a code or data (or anywhere else) position. As the name says, the `LocationDB` is a database of locations. Here are some rules:\n",
     "- each location has exactly *one* associated `LocKey`\n",
     "- a `LocKey` is linked to a unique `LocationDB` (and must not be used in another `LocationDB`)\n",
     "- a `LocKey` is very similar to primary key object in a database.\n",
     "- 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 an identical offset\n",
     "- two `LocKey`s cannot share a symbol name\n",
     "\n",
     "Below are manipulations of the `LocationDB`"