diff --git a/docs/Homebrew/Cmd/List.html b/docs/Homebrew/Cmd/List.html
index b05904814..62a79b2d8 100644
--- a/docs/Homebrew/Cmd/List.html
+++ b/docs/Homebrew/Cmd/List.html
@@ -465,7 +465,7 @@
system_command! "find", args: casks.map(&:caskroom_path) + find_args, print_stdout: true if casks.present?
else
kegs.each { |keg| PrettyListing.new keg } if kegs.present?
- list_casks if casks.present?
+ Cask::List.list_casks(*casks, one: args.public_send(:"1?")) if casks.present?
end
end
end
diff --git a/docs/Homebrew/Cmd/PrettyListing.html b/docs/Homebrew/Cmd/PrettyListing.html
index c53b5e0cb..2d3d9df8a 100644
--- a/docs/Homebrew/Cmd/PrettyListing.html
+++ b/docs/Homebrew/Cmd/PrettyListing.html
@@ -188,10 +188,6 @@
-211
-212
-213
-214
215
216
217
@@ -212,10 +208,14 @@
232
233
234
-235
+235
+236
+237
+238
+239
- # File 'cmd/list.rb', line 211
+ # File 'cmd/list.rb', line 215
def initialize(path)
Pathname.new(path).children.sort_by { |p| p.to_s.downcase }.each do |pn|
|