Skip to content

small English grammar fixes #9830

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compiler/src/dotty/tools/dotc/core/Symbols.scala
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ object Symbols {
}

/** Enter this symbol in its class owner after given `phase`. Create a fresh
* denotation for its owner class if the class has not yet already one
* denotation for its owner class if the class does not already have one
* that starts being valid after `phase`.
* @pre Symbol is a class member
*/
Expand All @@ -232,7 +232,7 @@ object Symbols {
}

/** Remove symbol from scope of owning class after given `phase`. Create a fresh
* denotation for its owner class if the class has not yet already one that starts being valid after `phase`.
* denotation for its owner class if the class does not already have one that starts being valid after `phase`.
* @pre Symbol is a class member
*/
def dropAfter(phase: DenotTransformer)(using Context): Unit =
Expand Down