Skip to content

Commit 619eb93

Browse files
danbevtargos
authored andcommitted
tools: fix typo in cache_builder.cc
PR-URL: #28418 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent d8942f8 commit 619eb93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/code_cache/cache_builder.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ std::string CodeCacheBuilder::Generate(Local<Context> context) {
136136
loader->GetCodeCache(id.c_str());
137137
if (cached_data == nullptr) {
138138
// TODO(joyeecheung): display syntax errors
139-
std::cerr << "Failed to complile " << id << "\n";
139+
std::cerr << "Failed to compile " << id << "\n";
140140
} else {
141141
data.emplace(id, cached_data);
142142
}

0 commit comments

Comments
 (0)