You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ph...@apache.org on 2019/11/15 13:02:57 UTC

[accumulo-website] branch phrocker-patch-1 created (now 1f9cf8a)

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

phrocker pushed a change to branch phrocker-patch-1
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git.


      at 1f9cf8a  Turned a non-word into a word

This branch includes the following new commits:

     new 1f9cf8a  Turned a non-word into a word

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[accumulo-website] 01/01: Turned a non-word into a word

Posted by ph...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 1f9cf8a2ae36f45242fd16f982b072fd6a5dc456
Author: Marc <ph...@apache.org>
AuthorDate: Fri Nov 15 08:02:50 2019 -0500

    Turned a non-word into a word
---
 _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..dcf75fd 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.
+be better sought or searched in ranges.
 
 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: