It would be useful if smart typing wasn't active when writing code comments. The reason being you're more likely to be writing natural language sentences than code.
for example:
<?php // Don't forget the elephants! $elephants = true; ?>
with smart typing comes out like this:
<?php // Don't forget the elephants!' $elephants = true; ?>
What do other's think?
drew.