Skip to content

Commit

Permalink
keep save_file returning a void type
Browse files Browse the repository at this point in the history
  • Loading branch information
benklop authored Nov 15, 2023
1 parent d8f4864 commit 5e8a4fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sig/perfect_toml.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ module PerfectTOML
def self.load_file: (String filename, symbolize_names: bool) -> untyped
| (IO io, symbolize_names: bool) -> untyped
def self.generate: (untyped data, sort_keys: boolean, use_literal_string: boolean, use_multiline_string: boolean, use_dot: boolean) -> String
def self.save_file: (String filename, untyped data, sort_keys: boolean, use_literal_string: boolean, use_multiline_string: boolean, use_dot: boolean) -> IO
| (IO io, untyped data, sort_keys: boolean, use_literal_string: boolean, use_multiline_string: boolean, use_dot: boolean) -> IO
def self.save_file: (String filename, untyped data, sort_keys: boolean, use_literal_string: boolean, use_multiline_string: boolean, use_dot: boolean) -> void
| (IO io, untyped data, sort_keys: boolean, use_literal_string: boolean, use_multiline_string: boolean, use_dot: boolean) -> void

class LocalDateTime
def initialize: (untyped year, untyped month, untyped day, untyped hour, untyped min, untyped sec) -> void
Expand Down

0 comments on commit 5e8a4fe

Please sign in to comment.