When running a query in the Editor that contains a function followed by a comment, the comment will show up in the column name for that function.
For example, the column name for the following query would be 'count --comment'
SELECT count(*)
--comment
FROM table1;