diff --git a/README.md b/README.md
index 2350a06e..16ce71e5 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
- 
@@ -87,17 +87,17 @@ To set a field when an object already exists:
## Searching
-
+
#### Within
WITHIN searches a collection for objects that are fully contained inside a specified bounding area.
-
+
#### Intersects
INTERSECTS searches a collection for objects that intersect a specified bounding area.
-
+
#### Nearby
NEARBY searches a collection for objects that intersect a specified radius.
@@ -108,13 +108,13 @@ NEARBY searches a collection for objects that intersect a specified radius.
This is very helpful for example; when you have many (perhaps millions) of objects and do not want them all clustered together on a map. Sparse will limit the number of objects returned and provide them evenly distributed so that your map looks clean.
You can choose a value between 1 and 8. The value 1 will result in no more than 4 items. The value 8 will result in no more than 65536. *1=4, 2=16, 3=64, 4=256, 5=1024, 6=4098, 7=16384, 8=65536.*
-No Sparsing |
-Sparse 1 |
-Sparse 2 |
-Sparse 3 |
-Sparse 4 |
-Sparse 5 |
-Sparse 6 |
+No Sparsing |
+Sparse 1 |
+Sparse 2 |
+Sparse 3 |
+Sparse 4 |
+Sparse 5 |
+Sparse 6 |
*Please note that higher the sparse value, the slower the performance. Also, LIMIT and CURSOR are not available when using SPARSE.*
@@ -131,7 +131,7 @@ You can choose a value between 1 and 8. The value 1 will result in no more than
## Geofencing
-
+
A [geofence](https://en.wikipedia.org/wiki/Geo-fence) is a virtual boundary that can detect when an object enters or exits the area. This boundary can be a radius, bounding box, or a polygon. Tile38 can turn any standard search into a geofence monitor by adding by the FENCE keyword to the search.