Skip to content

Commit 8c23de7

Browse files
committed
fixing spelling
Signed-off-by: Sachin Pisal <[email protected]>
1 parent fc82073 commit 8c23de7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

runtime/cudaq/operators.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -1196,13 +1196,13 @@ class product_op {
11961196
/// @param other R-value reference to scalar_operator.
11971197
/// @return A sum_op instance representing the subtraction.
11981198
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).
12011201
/// @param other Constant reference to scalar_operator.
12021202
/// @return A sum_op instance representing the subtraction.
12031203
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).
12061206
/// @param other Constant reference to scalar_operator.
12071207
/// @return A sum_op instance representing the subtraction.
12081208
sum_op<HandlerTy> operator-(const scalar_operator &other) &&;

0 commit comments

Comments
 (0)