You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by li...@apache.org on 2016/12/23 12:51:17 UTC

[3/4] incubator-trafodion git commit: [TRAFODION-2403] fix typos

[TRAFODION-2403] fix typos


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

Branch: refs/heads/master
Commit: bca9aa48ae30f322c93de2c2b8d9f21f31d750a7
Parents: 0273bbb
Author: Liu Ming <ov...@sina.com>
Authored: Fri Dec 23 09:10:48 2016 +0000
Committer: Liu Ming <ov...@sina.com>
Committed: Fri Dec 23 09:10:48 2016 +0000

----------------------------------------------------------------------
 .../src/asciidoc/_chapters/sql_language_elements.adoc          | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/bca9aa48/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
----------------------------------------------------------------------
diff --git a/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc b/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
index b6dc10c..fde124d 100644
--- a/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
+++ b/docs/sql_reference/src/asciidoc/_chapters/sql_language_elements.adoc
@@ -3370,9 +3370,9 @@ match-value [NOT] REGEXP regular-expression
 * `_match-value_`
 +
 is a character value expression that specifies a set of strings to
-search for that match the _pattern_.
+search for that match the _regular-expression_.
 
-* `_pattern_`
+* `_regular-expression_`
 +
 is a character value expression that specifies a regular expression. 
 Trafodion regular expressions follow POSIX regular expression rules.
@@ -3381,7 +3381,7 @@ Trafodion regular expressions follow POSIX regular expression rules.
 [[using_not]]
 ===== Using NOT
 
-If you specify NOT, the predicate is true if the _pattern_ does not
+If you specify NOT, the predicate is true if the _regular-expression_ does not
 match any string in the _match-value_.
 
 [[regexp_examples]]