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 568058f commit 206bca7Copy full SHA for 206bca7
src/main/java/org/truffleruby/language/backtrace/Backtrace.java
@@ -89,7 +89,7 @@ public Activation[] getActivations(TruffleException truffleException) {
89
90
// The stacktrace is computed here if it was not already computed and stored in the
91
// TruffleException with TruffleStackTraceElement.fillIn().
92
- final List<TruffleStackTraceElement> stackTrace = TruffleStackTrace.getStacktrace((Throwable) truffleException);
+ final List<TruffleStackTraceElement> stackTrace = TruffleStackTrace.getStackTrace((Throwable) truffleException);
93
94
final List<Activation> activations = new ArrayList<>();
95
final RubyContext context = RubyLanguage.getCurrentContext();
0 commit comments