I get an error when trying to build my PDF in Texmaker, I have following lines of code giving me an issue despite working this morning:
\begin{enumerate}[a)]
\item Some text
\item Some text
\item Some text \\
\end{enumerate}
I get the following message:

As there are many issues that are similar I've tried the answer on this question to see if my enumerate was bugging due to the \\ and it wasn't the case. The strange thing is when I type the following it works perfectly:
\begin{enumerate}
\item Some text
\item Some text
\item Some text \\
\end{enumerate}


enumitempackage. With\usepackage[shortlabels]{enumitem}you can use the old style label, but I think it is better to switch to the new more explicit style:[label={a)}]– Peter Grill Sep 27 '12 at 21:00