giannicrivello created this revision.
Herald added a subscriber: steakhal.
Herald added a reviewer: NoQ.
Herald added a project: All.
giannicrivello requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D138963

Files:
  clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td


Index: clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
===================================================================
--- clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
+++ clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
@@ -27,7 +27,7 @@
   bits<1> Val = val;
 }
 
-/// Alpha entries are under development, might be incomplet, inkorrekt and
+/// Alpha entries are under development, might be incomplete, incorrect and
 /// unstable.
 def InAlpha : DevelopmentStageEnum<0>;
 
@@ -98,8 +98,8 @@
 
 /// Describes a checker. Every builtin checker has to be registered with the 
use
 /// of this class (out-of-trunk checkers loaded from plugins obviously don't).
-/// Note that a checker has a name (e.g.: 'NullDereference'), and a fullname,
-/// that is autogenerated with the help of the ParentPackage field, that also
+/// Note that a checker has a name (e.g.: 'NullDereference'), and a full name,
+/// that is auto-generated with the help of the ParentPackage field, that also
 /// includes package names (e.g.: 'core.NullDereference').
 /// Example:
 ///   def DereferenceChecker : Checker<"NullDereference">,
@@ -129,7 +129,7 @@
 /// enabled if none of its dependencies (transitively) is disabled. 
Dependencies
 /// are always registered before the dependent checker, and its checker
 /// callbacks are also evaluated sooner.
-/// One may only depend on a purely modeling checker (that emits no 
diagnostis).
+/// One may only depend on a purely modeling checker (that emits no 
diagnostics).
 /// Example:
 ///   def InnerPointerChecker : Checker<"InnerPointer">,
 ///     HelpText<"Check for inner pointers of C++ containers used after "


Index: clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
===================================================================
--- clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
+++ clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
@@ -27,7 +27,7 @@
   bits<1> Val = val;
 }
 
-/// Alpha entries are under development, might be incomplet, inkorrekt and
+/// Alpha entries are under development, might be incomplete, incorrect and
 /// unstable.
 def InAlpha : DevelopmentStageEnum<0>;
 
@@ -98,8 +98,8 @@
 
 /// Describes a checker. Every builtin checker has to be registered with the use
 /// of this class (out-of-trunk checkers loaded from plugins obviously don't).
-/// Note that a checker has a name (e.g.: 'NullDereference'), and a fullname,
-/// that is autogenerated with the help of the ParentPackage field, that also
+/// Note that a checker has a name (e.g.: 'NullDereference'), and a full name,
+/// that is auto-generated with the help of the ParentPackage field, that also
 /// includes package names (e.g.: 'core.NullDereference').
 /// Example:
 ///   def DereferenceChecker : Checker<"NullDereference">,
@@ -129,7 +129,7 @@
 /// enabled if none of its dependencies (transitively) is disabled. Dependencies
 /// are always registered before the dependent checker, and its checker
 /// callbacks are also evaluated sooner.
-/// One may only depend on a purely modeling checker (that emits no diagnostis).
+/// One may only depend on a purely modeling checker (that emits no diagnostics).
 /// Example:
 ///   def InnerPointerChecker : Checker<"InnerPointer">,
 ///     HelpText<"Check for inner pointers of C++ containers used after "
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to