[Tex/LaTex] Bullets without itemize ignoring spacing

spacing

Easy question for those in the know 🙂
I can produce a itemised list like this

\documentclass{article}
\usepackage{enumitem}% http://ctan.org/pkg/enumitem
\begin{document}
\begin{itemize}
\item banana
\item mango
\item Meg Ryan
\end{itemize}
\end{document}

But when I use text bullets the space between the bullet and the text is ignored

\documentclass{article}
\begin{document}
Steven Segal \textbullet is  \textbullet a \textbullet really \textbullet bad shot!
\end{itemize}
\end{document}

Best Answer

You have to insert a space after it, using

Steven Segal \textbullet\ is  \textbullet\ a \textbullet\ really \textbullet\ bad shot!

Also, you don't need the enumitem package for this neither for itemize environment.