Skip to content

Commit 195807e

Browse files
committed
correct spelling
1 parent 0bc3135 commit 195807e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/exception/PBaseException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public List<TruffleStackTraceElement> getStackTrace() {
192192
public void reifyException() {
193193
if (stackTrace == null && traceback == null) {
194194
TruffleStackTrace.fillIn(exception);
195-
stackTrace = TruffleStackTrace.getStacktrace(exception);
195+
stackTrace = TruffleStackTrace.getStackTrace(exception);
196196
Iterator<TruffleStackTraceElement> iter = stackTrace.iterator();
197197
while (iter.hasNext()) {
198198
TruffleStackTraceElement element = iter.next();

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/exception/ExceptionUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private ExceptionUtils() {
5656

5757
@TruffleBoundary
5858
public static void printPythonLikeStackTrace(PException e) {
59-
List<TruffleStackTraceElement> stackTrace = TruffleStackTrace.getStacktrace(e);
59+
List<TruffleStackTraceElement> stackTrace = TruffleStackTrace.getStackTrace(e);
6060
ArrayList<String> stack = new ArrayList<>();
6161
for (TruffleStackTraceElement frame : stackTrace) {
6262

0 commit comments

Comments
 (0)