This is an automated email from the ASF dual-hosted git repository.
imaxon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git
The following commit(s) were added to refs/heads/master by this push:
new 8897bfa [NO ISSUE] Fix typo in docs
8897bfa is described below
commit 8897bfa513413d82de383402341d8ac169ee3979
Author: Ian Maxon <[email protected]>
AuthorDate: Tue Sep 3 18:21:19 2019 -0700
[NO ISSUE] Fix typo in docs
Change-Id: I8e394025b80b2c3d6d03a53cd863cd534d55e049
Reviewed-on: https://asterix-gerrit.ics.uci.edu/3541
Sonar-Qube: Jenkins <[email protected]>
Contrib: Jenkins <[email protected]>
Integration-Tests: Jenkins <[email protected]>
Tested-by: Jenkins <[email protected]>
Reviewed-by: Till Westmann <[email protected]>
---
asterixdb/asterix-doc/src/site/markdown/aql/primer.md | 2 +-
asterixdb/asterix-doc/src/site/markdown/sqlpp/filters.md | 2 +-
asterixdb/asterix-doc/src/site/markdown/sqlpp/fulltext.md | 2 +-
asterixdb/asterix-doc/src/site/markdown/sqlpp/primer-sqlpp.md | 2 +-
asterixdb/asterix-doc/src/site/markdown/sqlpp/similarity.md | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/asterixdb/asterix-doc/src/site/markdown/aql/primer.md
b/asterixdb/asterix-doc/src/site/markdown/aql/primer.md
index de187b0..72406c0 100644
--- a/asterixdb/asterix-doc/src/site/markdown/aql/primer.md
+++ b/asterixdb/asterix-doc/src/site/markdown/aql/primer.md
@@ -44,7 +44,7 @@ As you read through this document, you should try each step
for yourself on your
Once you have reached the end, you will be fully armed and dangerous, with all
the basic AsterixDB knowledge
that you'll need to start down the path of modeling, storing, and querying
your own semistructured data.
-## ADM: Modeling Semistructed Data in AsterixDB ##
+## ADM: Modeling Semistructured Data in AsterixDB ##
In this section you will learn all about modeling Big Data using
ADM, the data model of the AsterixDB BDMS.
diff --git a/asterixdb/asterix-doc/src/site/markdown/sqlpp/filters.md
b/asterixdb/asterix-doc/src/site/markdown/sqlpp/filters.md
index 6b8e00f..be1e2d4 100644
--- a/asterixdb/asterix-doc/src/site/markdown/sqlpp/filters.md
+++ b/asterixdb/asterix-doc/src/site/markdown/sqlpp/filters.md
@@ -63,7 +63,7 @@ components, it is possible, when answering certain queries,
to exploit
partitioning to only access some components and safely filter out the
remaining components, thus reducing query times. For instance,
referring to our
-[TinySocial](primer.html#ADM:_Modeling_Semistructed_Data_in_AsterixDB)
+[TinySocial](primer.html#ADM:_Modeling_Semistructured_Data_in_AsterixDB)
example, suppose a user always retrieves tweets from the
`TweetMessages` dataset based on the `send-time` field (e.g., tweets
posted in the last 24 hours). Since there is not a secondary index on
diff --git a/asterixdb/asterix-doc/src/site/markdown/sqlpp/fulltext.md
b/asterixdb/asterix-doc/src/site/markdown/sqlpp/fulltext.md
index 1328ed9..1d5b8da 100644
--- a/asterixdb/asterix-doc/src/site/markdown/sqlpp/fulltext.md
+++ b/asterixdb/asterix-doc/src/site/markdown/sqlpp/fulltext.md
@@ -54,7 +54,7 @@ Thus, "Voice" or "voice" will be evaluated as the same word.
from ChirpMessages msg
where ftcontains(msg.messageText, "voice", {"mode":"any"});
-The DDL and DML of TinySocial can be found in [ADM: Modeling Semistructed Data
in
AsterixDB](../sqlpp/primer-sqlpp.html#ADM:_Modeling_Semistructed_Data_in_AsterixDB).
+The DDL and DML of TinySocial can be found in [ADM: Modeling Semistructured
Data in
AsterixDB](../sqlpp/primer-sqlpp.html#ADM:_Modeling_Semistructured_Data_in_AsterixDB).
The `Expression1` is an expression that should be evaluable as a string at
runtime as in the above example
where `msg.messageText` is a string field. The `Expression2` can be a string,
an (un)ordered list
diff --git a/asterixdb/asterix-doc/src/site/markdown/sqlpp/primer-sqlpp.md
b/asterixdb/asterix-doc/src/site/markdown/sqlpp/primer-sqlpp.md
index 40b81d6..48eba96 100644
--- a/asterixdb/asterix-doc/src/site/markdown/sqlpp/primer-sqlpp.md
+++ b/asterixdb/asterix-doc/src/site/markdown/sqlpp/primer-sqlpp.md
@@ -45,7 +45,7 @@ You will use the AsterixDB web interface to do this, and for
SQL++ you will need
Once you have reached the end of this tutorial, you will be fully armed and
dangerous, with all the basic AsterixDB knowledge
that you'll need to start down the path of modeling, storing, and querying
your own semistructured data.
-## ADM: Modeling Semistructed Data in AsterixDB ##
+## ADM: Modeling Semistructured Data in AsterixDB ##
In this section you will learn all about modeling Big Data using
ADM, the data model of the AsterixDB BDMS.
diff --git a/asterixdb/asterix-doc/src/site/markdown/sqlpp/similarity.md
b/asterixdb/asterix-doc/src/site/markdown/sqlpp/similarity.md
index 8118126..a0e6ab0 100644
--- a/asterixdb/asterix-doc/src/site/markdown/sqlpp/similarity.md
+++ b/asterixdb/asterix-doc/src/site/markdown/sqlpp/similarity.md
@@ -45,7 +45,7 @@ supports similarity queries using efficient indexes and
algorithms.
AsterixDB supports [edit
distance](http://en.wikipedia.org/wiki/Levenshtein_distance) (on strings) and
[Jaccard](http://en.wikipedia.org/wiki/Jaccard_index) (on sets). For
instance, in our
-[TinySocial](../sqlpp/primer-sqlpp.html#ADM:_Modeling_Semistructed_Data_in_AsterixDB)
+[TinySocial](../sqlpp/primer-sqlpp.html#ADM:_Modeling_Semistructured_Data_in_AsterixDB)
example, the `friendIds` of a Gleambook user forms a set
of friends, and we can define a similarity between the sets of
friends of two users. We can also convert a string to a set of grams of a
length "n"