about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlexandre-Xavier Labonté-Lamoureux <alexandrexavier@live.ca>2021-03-13 13:59:59 -0500
committerGitHub <noreply@github.com>2021-03-13 19:59:59 +0100
commitc10c860a47b029b9184b34fe4f90fe3609eff978 (patch)
tree32592759f9b883cae9bcb21019dd10affa5c7938
parent43fef27b4e21b5ad5d592733d1989c22e2cfff28 (diff)
downloadmiasm-c10c860a47b029b9184b34fe4f90fe3609eff978.tar.gz
miasm-c10c860a47b029b9184b34fe4f90fe3609eff978.zip
README: A few fixes (#1358)
* README.md: Fix typo 'too' -> 'tool'

* README.md: Line up colons

* README.md: Fix capitalization of acronyms
Diffstat (limited to '')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index bea3d943..b341f592 100644
--- a/README.md
+++ b/README.md
@@ -91,7 +91,7 @@ Using `Machine` abstraction:
 XOR        ESI, DWORD PTR [EAX]
 ```
 
-For Mips:
+For MIPS:
 ```pycon
 >>> mn = Machine('mips32b').mn
 >>> print(mn.dis(b'\x97\xa3\x00 ', "b"))
@@ -113,7 +113,7 @@ Create an intermediate representation object:
 ```pycon
 >>> lifter = machine.lifter_model_call(loc_db)
 ```
-Create an empty ircfg
+Create an empty ircfg:
 ```pycon
 >>> ircfg = lifter.new_ircfg()
 ```
@@ -205,7 +205,7 @@ MOV        EAX, EBX
 RET
 ```
 
-Initializing the Jit engine with a stack:
+Initializing the JIT engine with a stack:
 
 ```pycon
 >>> jitter = machine.jitter(loc_db, jit_type='python')
@@ -597,10 +597,10 @@ They already use Miasm
 Tools
 -----
 
-* [Sibyl](https://github.com/cea-sec/Sibyl): A function divination too
+* [Sibyl](https://github.com/cea-sec/Sibyl): A function divination tool
 * [R2M2](https://github.com/guedou/r2m2): Use miasm as a radare2 plugin
-* [CGrex](https://github.com/mechaphish/cgrex) : Targeted patcher for CGC binaries
-* [ethRE](https://github.com/jbcayrou/ethRE) Reversing tool for Ethereum EVM (with corresponding Miasm2 architecture)
+* [CGrex](https://github.com/mechaphish/cgrex): Targeted patcher for CGC binaries
+* [ethRE](https://github.com/jbcayrou/ethRE): Reversing tool for Ethereum EVM (with corresponding Miasm2 architecture)
 
 Blog posts / papers / conferences
 ---------------------------------