Fix typos in docs.

Change-Id: I8c1fbf964295cb18c603b618cb89c4e1e20b9ea7
Reviewed-on: https://asterix-gerrit.ics.uci.edu/1625
Sonar-Qube: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Reviewed-by: Till Westmann <tillw@apache.org>
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)
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 @@
 
 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