Skip to content

Commit 832812e

Browse files
Jackey Leesrowen
authored andcommitted
[SPARK-26394][CORE] Fix annotation error for Utils.timeStringAsMs
## What changes were proposed in this pull request? Change microseconds to milliseconds in annotation of Utils.timeStringAsMs. Closes #23346 from stczwd/stczwd. Authored-by: Jackey Lee <[email protected]> Signed-off-by: Sean Owen <[email protected]> (cherry picked from commit 428eb2a) Signed-off-by: Sean Owen <[email protected]>
1 parent 35c4235 commit 832812e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/util/Utils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ private[spark] object Utils extends Logging {
11061106
}
11071107

11081108
/**
1109-
* Convert a time parameter such as (50s, 100ms, or 250us) to microseconds for internal use. If
1109+
* Convert a time parameter such as (50s, 100ms, or 250us) to milliseconds for internal use. If
11101110
* no suffix is provided, the passed number is assumed to be in ms.
11111111
*/
11121112
def timeStringAsMs(str: String): Long = {

0 commit comments

Comments
 (0)