From e90d3af0b7e5a6da964ca017b27ff81e9c9f7d75 Mon Sep 17 00:00:00 2001 From: xs-li <48080397+xs-li@users.noreply.github.com> Date: Tue, 31 Mar 2020 17:02:34 +0800 Subject: [PATCH] Spelling mistakes stck to stack --- .../main/scala/org/apache/s2graph/core/GraphExceptions.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/s2core/src/main/scala/org/apache/s2graph/core/GraphExceptions.scala b/s2core/src/main/scala/org/apache/s2graph/core/GraphExceptions.scala index 2cc10635..caa970c4 100644 --- a/s2core/src/main/scala/org/apache/s2graph/core/GraphExceptions.scala +++ b/s2core/src/main/scala/org/apache/s2graph/core/GraphExceptions.scala @@ -20,10 +20,10 @@ package org.apache.s2graph.core object GraphExceptions { - var fillStckTrace = true + var fillStackTrace = true class BaseException(msg : String) extends Exception(msg){ override def fillInStackTrace : Exception = { - if(fillStckTrace) super.fillInStackTrace() + if(fillStackTrace) super.fillInStackTrace() this } }