Skip to content

Commit

Permalink
tools: fix typo in cache_builder.cc
Browse files Browse the repository at this point in the history
PR-URL: #28418
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
danbev authored and targos committed Jul 2, 2019
1 parent d8942f8 commit 619eb93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/code_cache/cache_builder.cc
Expand Up @@ -136,7 +136,7 @@ std::string CodeCacheBuilder::Generate(Local<Context> context) {
loader->GetCodeCache(id.c_str()); loader->GetCodeCache(id.c_str());
if (cached_data == nullptr) { if (cached_data == nullptr) {
// TODO(joyeecheung): display syntax errors // TODO(joyeecheung): display syntax errors
std::cerr << "Failed to complile " << id << "\n"; std::cerr << "Failed to compile " << id << "\n";
} else { } else {
data.emplace(id, cached_data); data.emplace(id, cached_data);
} }
Expand Down

0 comments on commit 619eb93

Please sign in to comment.