Skip to content

Commit

Permalink
Fix wrong type restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
petoem committed Nov 10, 2017
1 parent 2c26c10 commit 3501959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/envy.cr
Expand Up @@ -20,7 +20,7 @@ module Envy
end
{% end %}

def parse(filename = String) : Hash(String, String)
def parse(filename : String) : Hash(String, String)
env_vars = {} of String => String
File.each_line File.expand_path(filename) do |line|
line = line.strip
Expand Down

0 comments on commit 3501959

Please sign in to comment.