You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2019/11/27 01:56:31 UTC

[accumulo-website] branch master updated: Apply fix from #210; remove non-word, "seeked"

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 24b0eb6  Apply fix from #210; remove non-word, "seeked"
24b0eb6 is described below

commit 24b0eb6d124e844acad27f6222605af7171aea7a
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Tue Nov 26 20:55:49 2019 -0500

    Apply fix from #210; remove non-word, "seeked"
---
 _docs-2/getting-started/table_design.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 @@ date range.
 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: