pgfplots Fehler File ended while scanning use of \pgfplots@addplotimpl@table@fromfile
Ich habe einen einfachen Plot mit dem pgfplots package:
\documentclass{article}
\usepackage{pgfplots}
\usepackage{filecontents}
\begin{filecontents*}{data.csv}
\begin{filecontents*}{data.txt}
x y
0 0
10 20
20 25
30 22
40 40
50 32
60 47
70 42
80 50
90 52
100 60
\end{filecontents*}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot table {data.csv}
{data.txt}
\end{axis}
\end{tikzpicture}
\end{document}
Jedoch erhalte ich die Fehlermeldung:
Runaway argument?
\end {axis} \end {tikzpicture} \end {document}
! File ended while scanning use of \pgfplots@addplotimpl@table@fromfile.
<inserted text>
\par
Was habe ich hier falsch gemacht?