I noticed there is a small typo in the new default WordPress theme (Twenty Eleven). If you assign a post under the "Quote" format there is a random "t" character that shows up before your content. Until they fix that:
- Go to Dashboard → Appearance → Editor
- Open the **content-quote.php** file.
- Look for this code
```
<div class="comments-link">
<?php comments_popup_link( '<span class="leave-reply">' . __( 'Reply', 'twentyeleven' ) . '</span>', _x( '1', 'comments number', 'twentyeleven' ), _x( '%', 'comments number', 'twentyeleven' ) ); ?>t
</div>
```
- Delete that random 't' at the end of the second line. Or to make it really easy on yourself you could search for `") ); ?>t"` (without the quotes) and to find it easier.
Random. Happy Saturday!