8297693: Fix typos in src/hotspot and test/hotspot files

Co-authored-by: Michael Ernst <mernst@openjdk.org>
Reviewed-by: kevinw, dholmes, sspitsyn
This commit is contained in:
Jaikiran Pai 2022-11-30 11:28:11 +00:00
parent b52611bc36
commit 3f8882b2eb
12 changed files with 15 additions and 15 deletions

View file

@ -174,7 +174,7 @@ char* os::iso8601_time(jlong milliseconds_since_19700101, char* buffer, size_t b
// Compute the time zone offset.
// localtime_pd() sets timezone to the difference (in seconds)
// between UTC and and local time.
// between UTC and local time.
// ISO 8601 says we need the difference between local time and UTC,
// we change the sign of the localtime_pd() result.
const time_t local_to_UTC = -(UTC_to_local);