PrintEscapedString -> printEscapedString

Update PrintEscapedString after renaming it in ADT.

llvm-svn: 333673
This commit is contained in:
Jonas Devlieghere 2018-05-31 17:36:31 +00:00
parent 3260b00d48
commit 1ab6a7ac42
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ json::Expr toJSON(const TextEdit &P) {
llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const TextEdit &TE) {
OS << TE.range << " => \"";
PrintEscapedString(TE.newText, OS);
printEscapedString(TE.newText, OS);
return OS << '"';
}