[analyzer] Change warding in a path diagnostic:

"No method actually called because receiver is nil" ->
"No method is called because receiver is nil"

llvm-svn: 154077
This commit is contained in:
Anna Zaks 2012-04-05 02:10:19 +00:00
parent 5720600798
commit 67c83d247e
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ PathDiagnosticPiece *NilReceiverBRVisitor::VisitNode(const ExplodedNode *N,
// Issue a message saying that the method was skipped.
PathDiagnosticLocation L(Receiver, BRC.getSourceManager(),
N->getLocationContext());
return new PathDiagnosticEventPiece(L, "No method actually called "
return new PathDiagnosticEventPiece(L, "No method is called "
"because the receiver is nil");
}