File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1196,13 +1196,13 @@ class product_op {
1196
1196
// / @param other R-value reference to scalar_operator.
1197
1197
// / @return A sum_op instance representing the subtraction.
1198
1198
sum_op<HandlerTy> operator -(scalar_operator &&other) &&;
1199
- // / @brief Subtracts a scalar operator (by const reference) from this instance
1200
- // / (l-value reference).
1199
+ // / @brief Subtracts a scalar operator (by ` const` reference) from this
1200
+ // / instance (l-value reference).
1201
1201
// / @param other Constant reference to scalar_operator.
1202
1202
// / @return A sum_op instance representing the subtraction.
1203
1203
sum_op<HandlerTy> operator -(const scalar_operator &other) const &;
1204
- // / @brief Subtracts a scalar operator (by const reference) from this instance
1205
- // / (r-value reference).
1204
+ // / @brief Subtracts a scalar operator (by ` const` reference) from this
1205
+ // / instance (r-value reference).
1206
1206
// / @param other Constant reference to scalar_operator.
1207
1207
// / @return A sum_op instance representing the subtraction.
1208
1208
sum_op<HandlerTy> operator -(const scalar_operator &other) &&;
You can’t perform that action at this time.
0 commit comments