From e2e1f185c07c92006d8e8637c9244675752bd94d Mon Sep 17 00:00:00 2001 From: numpde <21158052+numpde@users.noreply.github.com> Date: Mon, 16 Dec 2019 01:40:17 +0100 Subject: [PATCH] Removed comment ref to IncrementByIntegerPhaseLE There appears to be no function IncrementByIntegerPhaseLE, and I guess it is covered by ApplyLEOperationOnPhaseLE. --- Standard/src/Arithmetic/Increment.qs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Standard/src/Arithmetic/Increment.qs b/Standard/src/Arithmetic/Increment.qs index f6dd2ae2ec6..53066a5b388 100644 --- a/Standard/src/Arithmetic/Increment.qs +++ b/Standard/src/Arithmetic/Increment.qs @@ -70,9 +70,6 @@ namespace Microsoft.Quantum.Arithmetic { /// encoding. /// ## increment /// The integer by which the `target` is incremented by. - /// - /// # See Also - /// - IncrementByIntegerPhaseLE operation IncrementByInteger(increment : Int, target : LittleEndian) : Unit is Adj + Ctl { ApplyPhaseLEOperationOnLECA(IncrementPhaseByInteger(increment, _), target); }