Run this code in background and see if it is showing description with the dot.

var gr = new GlideRecord('incident');
gr.addEncodedQuery("active=true^stateNOT IN6,7,8");
gr.query();
while (gr.next()) {
gr.description = gr.description + '.';
gs.print("Description is "+gr.description);
gr.update();
}