Word change in a document

I have a bunch of documents where I need to change the word pi to pisignage.
No big deal there:

sed -i -e 's/pi/spisignage/g' /path/to/file

However it is finding things like the word stopping and making the word stoppisignageng.

Any suggestions to just find the work pi and change it?