Aye

From the link:
QUOTE
For more details, see fstab(5). Only the user that mounted a filesystem can unmount it again. If any user should be able to unmount, then use users instead of user in the fstab line. The owner option is similar to the user option, with the restriction that the user must be the owner of the special file. This may be useful e.g. for /dev/fd if a login script makes the console user owner of this device. The group option is similar, with the restriction that the user must be member of the group of the special file.
so in essence, if you put users instead of user, you can then unmount it regardless of the user. If you put user, then only the user that mounted it can unmount it, in this instance, only root. If you put a group, then of course, you just need to add yourself to the group, and then you can unmount it. This is good, since you can have multiple users on the system, one can unmount it, but the other cannot unless they are a member of the group. If you are the only user, then putting users is enough to fix this problem as you've just done