Skip to content

Commit deb5b50

Browse files
authored
Merge pull request #58572 from jsoref/spelling-tools-swift-serialize-diagnostics
Spelling tools swift serialize diagnostics
2 parents 29962c9 + c077519 commit deb5b50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/swift-serialize-diagnostics/swift-serialize-diagnostics.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212
//
13-
// Convert localization YAML files to a srialized format.
13+
// Convert localization YAML files to a serialized format.
1414
//
1515
//===----------------------------------------------------------------------===//
1616

@@ -86,7 +86,7 @@ int main(int argc, char *argv[]) {
8686
// Print out the diagnostics IDs that are available in YAML but not available
8787
// in `.def`
8888
if (!yaml.unknownIDs.empty()) {
89-
llvm::errs() << "These diagnostic IDs are no longer availiable: '";
89+
llvm::errs() << "These diagnostic IDs are no longer available: '";
9090
llvm::interleave(
9191
yaml.unknownIDs, [&](std::string id) { llvm::errs() << id; },
9292
[&] { llvm::errs() << ", "; });

0 commit comments

Comments
 (0)