fixed an issue where the last character before convert ... to an ellipsis was being dropped
diff --git a/system/libraries/Typography.php b/system/libraries/Typography.php
index da100dc..6b18a2d 100644
--- a/system/libraries/Typography.php
+++ b/system/libraries/Typography.php
@@ -225,7 +225,7 @@
 
 							// Em dash and ellipses dots
 							'/\s?\-\-\s?/'					=> '—',
-							'/\w\.{3}/'						=> '…',
+							'/(\w)\.{3}/'					=> '$1…',
 
 							// double space after sentences
 							'/(\W)  /'						=> '$1  ',