Skip to content

Commit 62814c1

Browse files
author
Luki120
authored
Updated warnings' links (#83)
1 parent d57afb4 commit 62814c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/logos.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ package main;
237237
my $className = $1;
238238
my $expr = undef;
239239
if(index($className, ".") != -1 ) {
240-
fileWarning($lineno, "Hooking Objective-C bridged Swift class $className has unintuitive behaviour and won’t catch all invocations, see https://github.com/theos/theos/wiki/Swift#tweaks for more details.");
240+
fileWarning($lineno, "Hooking Objective-C bridged Swift class $className has unintuitive behaviour and won’t catch all invocations, see https://theos.dev/docs/swift for more details.");
241241
$expr = "objc_getClass(\"$className\")";
242242
$className =~ s/\./_/g;
243243
}
@@ -319,7 +319,7 @@ package main;
319319
my $className = $2;
320320
my $unescapedClassName = $2;
321321
if(index($className, ".") != -1 ) {
322-
fileWarning($lineno, "Dynamic lookup of Objective-C bridged Swift class $className has unintuitive behaviour and won’t catch all invocations, see https://github.com/theos/theos/wiki/Swift#tweaks for more details.");
322+
fileWarning($lineno, "Dynamic lookup of Objective-C bridged Swift class $className has unintuitive behaviour and won’t catch all invocations, see https://theos.dev/docs/swift for more details.");
323323
$className =~ s/\./_/g;
324324
}
325325
if($scope eq "+") {

0 commit comments

Comments
 (0)