The comma at the end is fine, you just need to ensure you don't have extra commas with nothing in them.
This would be bad:
*/
'mods' => array(
SaShop_Who(),
Sharethis::ShareThisWho(), ,
),
But if you're removing the mod, this would be correct:
*/
'mods' => array(
SaShop_Who(),
Sharethis::ShareThisWho(),
),