diff options
| author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2024-03-18 09:08:21 +0100 |
|---|---|---|
| committer | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2024-03-18 10:10:24 +0100 |
| commit | 46a201ecd64b478fc947d8b1b2e830b767bb66eb (patch) | |
| tree | 99818d355ee172717fc4322e3c0c7a7ae112979c /doc/locationdb/locationdb.ipynb | |
| parent | 2b1273e097495cbce6df53b0e5d9f03692df82b0 (diff) | |
| download | focaccia-miasm-46a201ecd64b478fc947d8b1b2e830b767bb66eb.tar.gz focaccia-miasm-46a201ecd64b478fc947d8b1b2e830b767bb66eb.zip | |
Fix typos found by codespell
Diffstat (limited to 'doc/locationdb/locationdb.ipynb')
| -rw-r--r-- | doc/locationdb/locationdb.ipynb | 4 |
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`" |