stdlib/find/find.rbs in rbs-0.14.0 vs stdlib/find/find.rbs in rbs-0.15.0

- old
+ new

@@ -25,11 +25,11 @@ # # Returns an enumerator if no block is given. # # See the `Find` module documentation for an example. # - def self?.find: (*String | _ToPath paths, ?ignore_error: bool) -> Enumerator[String, nil] - | (*String | _ToPath paths, ?ignore_error: bool) { (String arg0) -> void } -> nil + def self?.find: (*String | _ToPath paths, ?ignore_error: boolish) -> Enumerator[String, nil] + | (*String | _ToPath paths, ?ignore_error: boolish) { (String) -> void } -> nil # Skips the current file or directory, restarting the loop with the next entry. # If the current file is a directory, that directory will not be recursively # entered. Meaningful only within the block associated with Find::find. #