You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by bu...@apache.org on 2017/03/28 22:28:02 UTC

asterixdb git commit: Fix typos in docs.

Repository: asterixdb
Updated Branches:
  refs/heads/master d6a122aed -> fc3fea83d


Fix typos in docs.

Change-Id: I8c1fbf964295cb18c603b618cb89c4e1e20b9ea7
Reviewed-on: https://asterix-gerrit.ics.uci.edu/1625
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Till Westmann <ti...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/asterixdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/asterixdb/commit/fc3fea83
Tree: http://git-wip-us.apache.org/repos/asf/asterixdb/tree/fc3fea83
Diff: http://git-wip-us.apache.org/repos/asf/asterixdb/diff/fc3fea83

Branch: refs/heads/master
Commit: fc3fea83d02b480fcb08f772b70a57c7ef9cfd14
Parents: d6a122a
Author: Yingyi Bu <yi...@couchbase.com>
Authored: Tue Mar 28 13:27:45 2017 -0700
Committer: Yingyi Bu <bu...@gmail.com>
Committed: Tue Mar 28 15:27:35 2017 -0700

----------------------------------------------------------------------
 asterixdb/asterix-doc/src/main/markdown/sqlpp/0_toc.md   | 2 +-
 asterixdb/asterix-doc/src/main/markdown/sqlpp/3_query.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/fc3fea83/asterixdb/asterix-doc/src/main/markdown/sqlpp/0_toc.md
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-doc/src/main/markdown/sqlpp/0_toc.md b/asterixdb/asterix-doc/src/main/markdown/sqlpp/0_toc.md
index cdb2a1e..49bb96e 100644
--- a/asterixdb/asterix-doc/src/main/markdown/sqlpp/0_toc.md
+++ b/asterixdb/asterix-doc/src/main/markdown/sqlpp/0_toc.md
@@ -43,7 +43,7 @@
            * [Select *](#Select_star)
            * [Select Distinct](#Select_distinct)
            * [Unnamed Projections](#Unnamed_projections)
-           * [Abbreviatory Field Access Expressions](#Abbreviatory_field_access_expressions)
+           * [Abbreviated Field Access Expressions](#Abbreviated_field_access_expressions)
       * [UNNEST Clauses](#Unnest_clauses)
            * [Inner Unnests](#Inner_unnests)
            * [Left Outer Unnests](#Left_outer_unnests)

http://git-wip-us.apache.org/repos/asf/asterixdb/blob/fc3fea83/asterixdb/asterix-doc/src/main/markdown/sqlpp/3_query.md
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-doc/src/main/markdown/sqlpp/3_query.md b/asterixdb/asterix-doc/src/main/markdown/sqlpp/3_query.md
index 78620a4..638868f 100644
--- a/asterixdb/asterix-doc/src/main/markdown/sqlpp/3_query.md
+++ b/asterixdb/asterix-doc/src/main/markdown/sqlpp/3_query.md
@@ -446,7 +446,7 @@ This query outputs:
 
 In the result, `$1` is the generated name for `substr(user.name, 1)`, while `alias` is the generated name for `user.alias`.
 
-### <a id="Abbreviatory_field_access_expressions">Abbreviated Field Access Expressions</a>
+### <a id="Abbreviated_field_access_expressions">Abbreviated Field Access Expressions</a>
 As in standard SQL, SQL++ field access expressions can be abbreviated (not recommended) when there is no ambiguity. In the next example, the variable `user` is the only possible variable reference for fields `id`, `name` and `alias` and thus could be omitted in the query.
 
 ##### Example