Instead of xargs and mv, I would prefer rename tool:
Depending on which rename tool you have:
find ~/Downloads/Scala_Intro -name '*  *' -exec rename -n '  ' ' ' {} +
or
find ~/Downloads/Scala_Intro -name '*  *' -exec rename -n 's/  / /' {} +
(Remove -n option (dry-run) to runactually perform the renamerenaming if you're happy with the output)
 Or if you want to stick using mv (no xargs needed, find -exec will do):
find ~/Downloads/Scala_Intro -name '*  *' -exec sh -c 'mv "$1" "${1//  / }"' find-sh {} \;