Cannot delete ZFS snapshot

While Deleting to delete a snapshot, i typed:

zpool destroy zfsdiskpool@Sat

and got:

cannot open 'zfsdiskpool@Sat': invalid character '@' in pool name

This is because to delete snapshots in ZFS, you should use 'zfs destroy' instead of 'zpool destroy'. DOH!

zfs destroy zfsdiskpool@Sat
more ...