Skip to content

Commit 57853ae

Browse files
committed
Fixed typos
1 parent b3968c9 commit 57853ae

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You will need at least IDA Pro 7.4 or later because of the APIs that I use. If y
2626
## Features (short)
2727
- Display class names, vftables and class hierarchies as a list
2828
- Display RTTI parsed results on the Output window
29-
- Display vftables, class names, virtual methods, possilbe constructors and destructors, and class hierarchies as a dir tree (IDA 7.7 or later)
29+
- Display vftables, class names, virtual methods, possible constructors and destructors, and class hierarchies as a dir tree (IDA 7.7 or later)
3030
- Create directories for classes and move virtual methods to them in Functions and Names subviews (IDA 7.7 or later)
3131
- Move functions refer vftables to "possible ctors or dtors" folder under each class directory in Functions and Names subviews (IDA 7.7 or later)
3232
- Rename virtual methods by appending class names to them
@@ -72,14 +72,14 @@ The detected methods are moved to each class folder in Functions and Names subvi
7272
7373
![method classifications](/images/classification.png)
7474

75-
PyClassInformer also displays a new widget named "Method Classifier". It lists all detected classes, vftables, virtual methods and possible constructors and destructors, and class herarchies at once as a form of a tree.
75+
PyClassInformer also displays a new widget named "Method Classifier". It lists all detected classes, vftables, virtual methods and possible constructors and destructors, and class hierarchies at once as a form of a tree.
7676

7777
![method classifier](/images/method_classifier.png)
7878

7979
> [!TIP]
8080
> Class hierarchies are represented as directories in Method Classifier.
81-
> Unfortunaltely, IDA's quick filter feature cannot filter directory contents.
82-
> To search them, use text search feture (Ctrl+T (find first text) and Alt+T (Find next text)).
81+
> Unfortunately, IDA's quick filter feature cannot filter directory contents.
82+
> To search them, use text search feature (Ctrl+T (find first text) and Alt+T (Find next text)).
8383
> For example, input a class name, a single space, and a parenthesis like "CWinApp (".
8484
8585
> [!NOTE]
@@ -88,7 +88,7 @@ PyClassInformer also displays a new widget named "Method Classifier". It lists a
8888
### Known classes detection (<= IDA 8.3)
8989
PyClassInformer can color known class names for easily finding user-defined classes.
9090
The image below is an example of a coloring result.
91-
You can easily find CSimpleTestApp, CSimpleTestDoc, CSimpleTestView and CSimpleTestCtrlItem are user-defined classes. So you can forcus on checking them.
91+
You can easily find CSimpleTestApp, CSimpleTestDoc, CSimpleTestView and CSimpleTestCtrlItem are user-defined classes. So you can focus on checking them.
9292

9393
![Class coloring](/images/coloring.png)
9494

pyclassinformer/msvc_rtti.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def __init__(self, ea, nb_classes):
235235
pass
236236

237237
# Sometimes, mdisp value is not included in COLs' offsets.
238-
# In that case, use either one of the followings:
238+
# In that case, use either one of the following:
239239
# - zero (before iterating BCA)
240240
# - in the middle of the BCD's mdisp of a path (for MI with multiple vftables)
241241
# - least COL's offset (for other cases such as SI and MI with a single vftable)

0 commit comments

Comments
 (0)