massaged regex for double spaces after sentences
diff --git a/system/libraries/Typography.php b/system/libraries/Typography.php
index 84e6a04..9fcf6b6 100644
--- a/system/libraries/Typography.php
+++ b/system/libraries/Typography.php
@@ -269,7 +269,7 @@
 							'/\w\.{3}/'						=> '…',
 
 							// double space after sentences
-							'/(\W)\s{2}/'					=> '$1  ',
+							'/(\W)  /'						=> '$1  ',
 
 							// ampersands, if not a character entity
 							'/&(?!#?[a-zA-Z0-9]{2,};)/'		=> '&'