diff --git a/ExampleExtension/Extension.cpp b/ExampleExtension/Extension.cpp
index 99ac41b..d36346b 100644
Binary files a/ExampleExtension/Extension.cpp and b/ExampleExtension/Extension.cpp differ
diff --git a/ExampleExtension/Extension.h b/ExampleExtension/Extension.h
index ab69a80..0b6573c 100644
Binary files a/ExampleExtension/Extension.h and b/ExampleExtension/Extension.h differ
diff --git a/README.md b/README.md
index 7528296..e7908f4 100644
--- a/README.md
+++ b/README.md
@@ -5,13 +5,14 @@ it will call ```OnNewSentence``` on all extensions it finds sequentially,
plugging the output of ```OnNewSentence``` from the previous extension into the next extension.
After the sentence has been processed by all extensions, it will be displayed.
-# MiscInfo
+# SentenceInfo
-## The following properties are in ```MiscInfo```
-```"current select"```: always 0 unless the sentence is in the text channel currently selected by the user.
+## The following properties are in ```SentenceInfo```
+```"current select"```: always 0 unless the sentence is in the text channel selected by the user.
```"hook address"```: address the hook was inserted at. May need cast to unsigned. Console text channel is always -1.
```"process id"```: process id that the sentence is coming from.
-```"text handle"```: number that uniquely identifies the text channel the sentence is in.
+```"text handle"```: number that uniquely identifies the current text channel.
+```"text name"```: pointer to start of a wchar array of the name of the current text channel.
# Notes