fix typo: TOOD -> TODO (#448)

This commit is contained in:
Fumitoshi Ukai 2019-05-07 16:02:06 +09:00 committed by GitHub
parent 0d0c254317
commit ba8a9f6952
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -169,7 +169,7 @@ void DumpTimeInfo() {
g_failure_writer(buf, formatter.num_bytes_written());
}
// TOOD(hamaji): Use signal instead of sigaction?
// TODO(hamaji): Use signal instead of sigaction?
#ifdef HAVE_SIGACTION
// Dumps information about the signal to STDERR.

View File

@ -142,7 +142,7 @@ static void DumpStackTrace(int skip_count, DebugWriter *writerfn, void *arg) {
static void DumpStackTraceAndExit() {
DumpStackTrace(1, DebugWriteToStderr, NULL);
// TOOD(hamaji): Use signal instead of sigaction?
// TODO(hamaji): Use signal instead of sigaction?
if (IsFailureSignalHandlerInstalled()) {
// Set the default signal handler for SIGABRT, to avoid invoking our
// own signal handler installed by InstallFailureSignalHandler().