File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
clang/include/clang/Analysis/FlowSensitive/Models Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ namespace clang::dataflow::statusor_model {
2929// The helper functions exported here are for use of downstream vendor
3030// extensions of this model.
3131
32- // Match declation of `absl::StatusOr<T>` and bind `T` to "T".
32+ // Match declaration of `absl::StatusOr<T>` and bind `T` to "T".
3333clang::ast_matchers::DeclarationMatcher statusOrClass ();
34- // Match declation of `absl::Status`.
34+ // Match declaration of `absl::Status`.
3535clang::ast_matchers::DeclarationMatcher statusClass ();
3636// Match declaration of `absl::internal_statusor::OperatorBase`.
3737clang::ast_matchers::DeclarationMatcher statusOrOperatorBaseClass ();
@@ -41,7 +41,7 @@ clang::ast_matchers::TypeMatcher statusOrType();
4141
4242// Get RecordStorageLocation for the `Status` contained in the `StatusOr`
4343RecordStorageLocation &locForStatus (RecordStorageLocation &StatusOrLoc);
44- // Get the StorageLocation OK boolean in the `Status`
44+ // Get the StorageLocation for the OK boolean in the `Status`
4545StorageLocation &locForOk (RecordStorageLocation &StatusLoc);
4646// Get the OK boolean in the `Status`, and initialize it if necessary.
4747BoolValue &valForOk (RecordStorageLocation &StatusLoc, Environment &Env);
You can’t perform that action at this time.
0 commit comments