diff --git a/README.rst b/README.rst
index 63bdeb5..06f5d78 100644
--- a/README.rst
+++ b/README.rst
@@ -11,6 +11,27 @@ pronunciations (e.g. a list of phones someone said versus a standard or
canonical dictionary pronunciation).
+Common Use Cases
+================
+
+What can you do with this library?
+
+- look up the list of phones and syllables for canonical pronunciations
+ of a word::
+
+ pysle.isletool.LexicalTool.lookup('cat')
+
+- map an actual pronunciation to a dictionary pronunciation (can be used
+ to automatically find speech errors)::
+
+ pysle.pronunciationtools.findClosestPronunciation(isleDict, 'cat', ['kh', 'ae',])
+
+- automatically syllabify a praat textgrid containing words and phones
+ (e.g. force-aligned text) -- requires my praatIO library::
+
+ pysle.syllabifyTextgrid(isleDict, praatioTextgrid, "words", "phones")
+
+
Requirements
================
@@ -20,10 +41,11 @@ Requirements
`ISLEX project page `_
`Direct link to the ISLEX file used in this project
- `_
+ `_ (islev2.txt)
- ``Python 2.7.*`` or above
+
Installation
================
@@ -61,7 +83,6 @@ and another::
print syllableList
>> [["''"], ['n', '@'], ['th', 'r']]
-stressedSyllable, syllableList, syllabification, stressedIndex = returnList
-Please see \test for example usage
+Please see \\test for example usage