File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ namespace sema {
66
66
// / parsed.
67
67
class CompoundScopeInfo {
68
68
public:
69
- // / Whether this compound stamement contains `for' or `while' loops
69
+ // / Whether this compound statement contains `for' or `while' loops
70
70
// / with empty bodies.
71
71
bool HasEmptyLoopBodies = false ;
72
72
@@ -168,7 +168,7 @@ class FunctionScopeInfo {
168
168
// / to build, the initial and final coroutine suspend points
169
169
bool NeedsCoroutineSuspends : 1 ;
170
170
171
- // / An enumeration represeting the kind of the first coroutine statement
171
+ // / An enumeration representing the kind of the first coroutine statement
172
172
// / in the function. One of co_return, co_await, or co_yield.
173
173
unsigned char FirstCoroutineStmtKind : 2 ;
174
174
@@ -220,7 +220,7 @@ class FunctionScopeInfo {
220
220
// / The initial and final coroutine suspend points.
221
221
std::pair<Stmt *, Stmt *> CoroutineSuspends;
222
222
223
- // / The stack of currently active compound stamement scopes in the
223
+ // / The stack of currently active compound statement scopes in the
224
224
// / function.
225
225
SmallVector<CompoundScopeInfo, 4 > CompoundScopes;
226
226
You can’t perform that action at this time.
0 commit comments