# File lib/hashery/ini_hash.rb, line 261
    def self.read_comment_from_file(path)
      comment = ""
      
      IO.foreach(path) do |line|
        line.strip!

        break unless line[0,1] == "#" or line == ""

        comment_line = line[1, line.length].to_s
        comment << "#{comment_line.strip}\n"
      end
      
      comment
    end