Commit dcbd2733 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed documentation of forElements and forAllElements in Array and ArrayView

parent 5cf6fd99
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -641,7 +641,7 @@ class Array
       * The lambda function is supposed to be declared as
       *
       * ```
       * f( IndexType elementIdx, ValueType& elementValue )
       * f( IndexType elementIdx, const ValueType& elementValue )
       * ```
       *
       * where
@@ -699,7 +699,7 @@ class Array
       * The lambda function is supposed to be declared as
       *
       * ```
       * f( IndexType elementIdx, ValueType& elementValue )
       * f( IndexType elementIdx, const ValueType& elementValue )
       * ```
       *
       * where
+2 −2
Original line number Diff line number Diff line
@@ -462,7 +462,7 @@ public:
    * The lambda function is supposed to be declared as
    *
    * ```
    * f( IndexType elementIdx, ValueType& elementValue )
    * f( IndexType elementIdx, const ValueType& elementValue )
    * ```
    *
    * where
@@ -519,7 +519,7 @@ public:
    * The lambda function is supposed to be declared as
    *
    * ```
    * f( IndexType elementIdx, ValueType& elementValue )
    * f( IndexType elementIdx, const ValueType& elementValue )
    * ```
    *
    * where