I am trying to make a simple table in LaTeX following some tutorials but I am getting an extra column/row after the last row? Why is this? Any help would be highly appreciated :)
\documentclass[]{article}
\begin{document}
\title{Title}
\author{Author}
\date{\today}
\maketitle
\begin{center}
\begin{tabular}{| c | c | c | c |} \hline
Date & Reasons for review & Changes & Version \\ \hline
yy/xx/2012 & First edition & - & 1.0 \\ \hline
yy/xx/2012 & Something added & Section 5 & 1.01 \\ \hline
yy/xx/2012 & More things & Section n & 1.02 \\ \hline
\end{tabular}
\end{center}
\end{document}


\end{tabular}and you'll be set. – A.Ellett Jan 4 at 2:02\end{tabular}and four times in front of the actual last row.) – Qrrbrbirlbel Jan 4 at 2:15