We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 104331a commit 2e6a2a5Copy full SHA for 2e6a2a5
bin/p6doc
@@ -131,6 +131,7 @@ sub disambiguate-f-search( $docee, %data ) {
131
if %data{$ndocee} {
132
my @types = %data{$ndocee}.values>>.Str.grep({ $^v ~~ /^ 'Type' / and not $^v ~~ / 'Cool' $ / });
133
@types = [gather @types.deepmap(*.take)].unique.list;
134
+ @types.=grep({!/$pref/});
135
%found{$ndocee}.push: @types X~ "." ~ $docee;
136
}
137
@@ -147,7 +148,7 @@ sub disambiguate-f-search( $docee, %data ) {
147
148
149
my %options;
150
for %found.keys -> $key {
- %options{$key}.push: %found{$key}>>.subst(/^'Type::'/, '');
151
+ %options{$key}.push: %found{$key};
152
153
154
# 's' => Type::Supply.grep, ... | and we specifically want the %found values,
0 commit comments