Skip to content

Commit a8713ad

Browse files
authored
Merge pull request #74627 from swiftlang/egorzhdan/missing-quote
[cxx-interop] Fix mismatched quotation mark in a request message
2 parents be6236f + c45e9c2 commit a8713ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AST/NameLookupRequests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ void swift::simple_display(llvm::raw_ostream &out,
512512
out << "Finding custom (foreign reference) reference counting operation '"
513513
<< (desc.kind == CustomRefCountingOperationKind::retain ? "retain"
514514
: "release")
515-
<< "for '" << desc.decl->getNameStr() << "'.\n";
515+
<< "' for '" << desc.decl->getNameStr() << "'.\n";
516516
}
517517

518518
SourceLoc

0 commit comments

Comments
 (0)