When writing a long sentence inside my algorithm, I am getting an indent in the new line. Is there a way to aviod this indent without creating a new number in this line? I am using the package algorithm2e.
My code:
\documentclass[a4paper]{article}
\usepackage[linesnumbered,ruled]{algorithm2e}[H]
\begin{document}
\begin{algorithm}[p]
Determine parameters:\
Now the algortihm tries to find a way to sort the parameters in some order following the list.\
loadList(parameters);
startFunction();\
\caption{New Method}
\end{algorithm}
\end{document}


