Update the doxygen comment 64/208164/2
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 19 Jun 2019 06:18:58 +0000 (15:18 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 19 Jun 2019 06:21:31 +0000 (15:21 +0900)
Change-Id: I762c16d8f1aaaeae0d6933796faef45b50bdee95
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
dali/public-api/object/property-array.h
dali/public-api/object/property-map.h
dali/public-api/object/property-value.h

index 2b77f69..a862704 100755 (executable)
@@ -59,7 +59,7 @@ public:
   Array( const std::initializer_list< Value >& values );
 
   /**
-   * @brief Copy Constructor.
+   * @brief Copy constructor.
    *
    * @SINCE_1_0.0
    * @param[in] other The Array to copy from
@@ -67,11 +67,12 @@ public:
   Array( const Array& other );
 
   /**
-   * @brief Move Constructor.
+   * @brief Move constructor.
    *
+   * A move constructor enables the resources owned by an r-value object to be moved into an l-value without copying.
    * @SINCE_1_4.17
    * @param[in] other The Array to move from
-   * @note The other array is an r-value so becomes invalid and is no longer usable.
+   * @note After the @a other array is used, it becomes invalid and is no longer usable.
    */
   Array( Array&& other );
 
@@ -205,7 +206,7 @@ public:
   Value& operator[]( SizeType index );
 
   /**
-   * @brief Assignment Operator.
+   * @brief Assignment operator.
    *
    * @SINCE_1_0.0
    * @param[in] other The array to copy from
@@ -215,14 +216,14 @@ public:
   Array& operator=( const Array& other );
 
   /**
-   * @brief Move Assignment Operator.
+   * @brief Move assignment operator.
    *
    * @SINCE_1_4.17
    * @param[in] other The array to copy from
    *
    * @return The moved array.
    *
-   * @note The other array is an r-value so becomes invalid and is no longer usable.
+   * @note After the @a other array is used, it becomes invalid and is no longer usable.
    */
   Array& operator=( Array&& other );
 
index f1d7e5c..b35a5ad 100755 (executable)
@@ -64,7 +64,7 @@ public:
   Map( const std::initializer_list< KeyValuePair >& values );
 
   /**
-   * @brief Copy Constructor.
+   * @brief Copy constructor.
    *
    * @SINCE_1_0.0
    * @param[in] other The Map to copy from
@@ -72,11 +72,11 @@ public:
   Map( const Map& other );
 
   /**
-   * @brief Move Constructor.
+   * @brief Move constructor.
    *
    * @SINCE_1_4.17
    * @param[in] other The Map to move from
-   * @note The other array is an r-value so becomes invalid and is no longer usable.
+   * @note After the @a other array is used, it becomes invalid and is no longer usable.
    */
   Map( Map&& other );
 
@@ -368,7 +368,7 @@ public:
   Value& operator[]( Property::Index key );
 
   /**
-   * @brief Assignment Operator.
+   * @brief Assignment operator.
    *
    * @SINCE_1_0.0
    * @param[in] other The map to copy from
@@ -378,7 +378,7 @@ public:
   Map& operator=( const Map& other );
 
   /**
-   * @brief Move Assignment Operator.
+   * @brief Move assignment operator.
    *
    * @SINCE_1_4.17
    * @param[in] other The map to move from
index 933eb8d..9b0f203 100755 (executable)
@@ -232,6 +232,7 @@ public:
   /**
    * @brief Move constructor.
    *
+   * A move constructor enables the resources owned by an rvalue object to be moved into an lvalue without copying.
    * @SINCE_1_4.16
    * @param[in] value The property value to move from
    */