Apply fix from #210; remove non-word, "seeked"
diff --git a/_docs-2/getting-started/table_design.md b/_docs-2/getting-started/table_design.md
index b029b2b..a124712 100644
--- a/_docs-2/getting-started/table_design.md
+++ b/_docs-2/getting-started/table_design.md
@@ -85,7 +85,7 @@
 Since Keys in Accumulo are sorted lexicographically by default, it's often useful to encode
 common data types into a byte format in which their sort order corresponds to the sort order
 in their native form. An example of this is encoding dates and numerical data so that they can
-be better seeked or searched in ranges.
+perform better during a seek or range search.
 
 The lexicoders are a standard and extensible way of encoding Java types. Here's an example
 of a lexicoder that encodes a java Date object so that it sorts lexicographically: