Comment lines changing location

Comment lines changing location

Hi,

It's not a major bug but I have noticed that when I add comments to code, they move around

Eg
When I try to save the following code

if (input.ORDER_TYPE  ==  "CHILD")

{

    show SHOW_MILESTONES;

}

//Show child form

hide SHOW_CHILD_FORM;


It get's changed to the following when I refresh

if (input.ORDER_TYPE  ==  "CHILD")

{

    show SHOW_MILESTONES;

    //Show child form

}

hide SHOW_CHILD_FORM;

I'm finding my comments move away from where they should be. Can someone please investigate? Is anyone else experiencing the issue?