[Tex/LaTex] Algorithm2e – Unwanted semi-colon

algorithm2e

With the following code, I have an unwanted semi-colon at the end of the loop condition.

enter image description here

Here is MWE.

\documentclass{article}
    \usepackage[lined]{algorithm2e}

\begin{document}

\begin{algorithm}
    \Begin{
        \uIf{Condition}{
                \Repeat{Stop}{Action}
        }
    }
\end{algorithm}

\end{document} 

How can I change this ?

Best Answer

You can also use \DontPrintSemicolon.