Auto-correct in the Editor
There are a handful of words I seem to regularly mistype, such as stirng for string, tehn for then, etc.
So, I define a Live Template that is keyed off the incorrectly spelled word that automatically changes it to the correct spelling. eg, this one to convert tehn to then:
<?xml version="1.0" encoding="utf-8" ?>
<codetemplate xmlns="http://schemas.borland.com/Delphi/2005/codetemplates" version="1.0.0">
<template name="tehn" invoke="auto">
<description>Auto-correct tehn into then</description>
<author>Malcolm Groves</author>
<code language="Delphi" context="methodbody" delimiter="|"><![CDATA[then |end|]]></code>
</template>
</codetemplate>