You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by mh...@apache.org on 2018/11/27 14:44:20 UTC

asterixdb git commit: [ASTERIXDB-2451][DOC] Fix object_unwrap() documentation

Repository: asterixdb
Updated Branches:
  refs/heads/master 0c6297c98 -> ae2d45498


[ASTERIXDB-2451][DOC] Fix object_unwrap() documentation

- user model changes: no
- storage format changes: no
- interface changes: no

Details:
- Fixed the documentation for object_unwrap function.

Change-Id: Id5822a51e49676dcd9aae35455d2e19fb6dfee07
Reviewed-on: https://asterix-gerrit.ics.uci.edu/3042
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
Integration-Tests: Jenkins <je...@fulliautomatix.ics.uci.edu>
Contrib: 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/ae2d4549
Tree: http://git-wip-us.apache.org/repos/asf/asterixdb/tree/ae2d4549
Diff: http://git-wip-us.apache.org/repos/asf/asterixdb/diff/ae2d4549

Branch: refs/heads/master
Commit: ae2d45498870274df66938f7769cf7a9fef777c3
Parents: 0c6297c
Author: Hussain Towaileb <Hu...@Gmail.com>
Authored: Sun Nov 25 00:21:31 2018 +0300
Committer: Murtadha Hubail <mh...@apache.org>
Committed: Tue Nov 27 06:43:48 2018 -0800

----------------------------------------------------------------------
 asterixdb/asterix-doc/src/main/markdown/builtins/8_record.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/ae2d4549/asterixdb/asterix-doc/src/main/markdown/builtins/8_record.md
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-doc/src/main/markdown/builtins/8_record.md b/asterixdb/asterix-doc/src/main/markdown/builtins/8_record.md
index 187f04c..2bcdb3e 100644
--- a/asterixdb/asterix-doc/src/main/markdown/builtins/8_record.md
+++ b/asterixdb/asterix-doc/src/main/markdown/builtins/8_record.md
@@ -356,10 +356,10 @@
           "location": {"city": "Irvine", "state": "CA"}
         }
 
-### object_wrap ###
+### object_unwrap ###
  * Syntax:
 
-        object_wrap(input_object)
+        object_unwrap(input_object)
 
  * Returns the value of the single name-value pair that appears in `input_object`.
  * Arguments:
@@ -372,7 +372,7 @@
 
  * Example:
 
-        object_wrap(
+        object_unwrap(
                      {
                        "id": 1
                      }