aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2013-02-05 19:52:24 +0000
committerAnna Zaks <ganna@apple.com>2013-02-05 19:52:24 +0000
commit087f40702fd00898fbb66d765d1143fd944c0485 (patch)
tree7a07f84ef175d839a351c350e597394fe70809b0
parenteaf9c744335788c0eff89ea7fd84f7dd64565d21 (diff)
[analyzer] Fix typo, better doxygen as per Jordan's feedback.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174434 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Analysis/AnalysisContext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/Analysis/AnalysisContext.h b/include/clang/Analysis/AnalysisContext.h
index 062af1bad1..880176ce51 100644
--- a/include/clang/Analysis/AnalysisContext.h
+++ b/include/clang/Analysis/AnalysisContext.h
@@ -137,14 +137,14 @@ public:
Stmt *getBody() const;
/// \brief Get the body of the Declaration.
- /// \param IsAutosynthesized Output parameter that specifies if the body is
- /// auto-generated by the BodyFarm.
+ /// \param[out] IsAutosynthesized Specifies if the body is auto-generated
+ /// by the BodyFarm.
Stmt *getBody(bool &IsAutosynthesized) const;
/// \brief Checks if the body of the Decl is generated by the BodyFarm.
///
/// Note, the lookup is not free. We are going to call getBody behind
- /// the sceines.
+ /// the scenes.
/// \sa getBody
bool isBodyAutosynthesized() const;