Having "$&" in a commented line causes the script editor to indent the next line.

I think this is wrong since the next line is a comment line and the script editor is not suppose indent the next line.

Code:
alias zzz { 
  echo -ag testing 
  ; this is a comment $& 
    echo -ag I think this is not suppose to be indented 
}

alias yyy { 
  echo -ag testing 
  ; this is a comment  
  echo -ag this is a comment 
}