Skip to content

Commit 481cb1a

Browse files
committed
Remove final dot after URL to ensure the link is clickable
See #3321 (comment)
1 parent 374383c commit 481cb1a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

spec/truffle/java_exception_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
out.should == <<-EOS
1717
1818
truffleruby: an internal exception escaped out of the interpreter,
19-
please report it to https://github.com/oracle/truffleruby/issues.
19+
please report it to https://github.com/oracle/truffleruby/issues
2020
2121
```
2222
custom message (java.lang.RuntimeException)
@@ -40,7 +40,7 @@
4040
out.should == <<-EOS
4141
4242
truffleruby: unexpected internal exception in at_exit,
43-
please report it to https://github.com/oracle/truffleruby/issues.
43+
please report it to https://github.com/oracle/truffleruby/issues
4444
4545
```
4646
custom message (java.lang.RuntimeException)
@@ -64,7 +64,7 @@
6464
out.should == <<-EOS
6565
6666
truffleruby: an internal exception escaped out of the interpreter,
67-
please report it to https://github.com/oracle/truffleruby/issues.
67+
please report it to https://github.com/oracle/truffleruby/issues
6868
6969
```
7070
message (java.lang.RuntimeException)

src/main/java/org/truffleruby/language/backtrace/BacktraceFormatter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ public static void printInternalError(RubyContext context, Throwable throwable,
380380
final BacktraceFormatter formatter = context.getDefaultBacktraceFormatter();
381381
stream.println();
382382
stream.println("truffleruby: " + from + ",");
383-
stream.println("please report it to https://github.com/oracle/truffleruby/issues.");
383+
stream.println("please report it to https://github.com/oracle/truffleruby/issues");
384384
stream.println();
385385
stream.println("```");
386386

0 commit comments

Comments
 (0)