The following code
\documentclass[tightpage]{standalone}
\usepackage{tikz}
\begin{document}
\resizebox{20cm}{3cm}{
\begin{tikzpicture}[scale=40]
\node (aaa) {AAA};
\draw [->] (aaa.east) edge [out=-30, in=-150] (aaa.west);
\end{tikzpicture}
\begin{tikzpicture}
\node (aaa) {AAA};
\draw [->] (aaa.east) to [out=-30, in=-150] (aaa.west);
\end{tikzpicture}}
\end{document}
compiles to the result shown here:
The only difference in the source of the two pictures is that the first uses edge where the second uses to.
What causes the spurious arrow head on the right side of the first picture? How can I get rid of the spurious arrow head?
Note: this is a minimal example extracted from a larger problem. I am using edge because I want to annotate the arrow.


\pathinstead\draw. – esdd Apr 05 '17 at 20:53