Skip to content

Commit

Permalink
Fix a comment
Browse files Browse the repository at this point in the history
---
Signed-off-by: Michael Ferguson <[email protected]>
  • Loading branch information
mppf committed Sep 5, 2024
1 parent df018b4 commit 0d4d17d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/include/chpl/resolution/scope-types.h
Original file line number Diff line number Diff line change
Expand Up @@ -1351,11 +1351,11 @@ class ModulePublicSymbols {
This type can apply in two different ways:
1. When resolving something like 'x.field', the resolver
can compute a MethodApplicableLookupHelper for 'x' based
can compute a MethodLookupHelper for 'x' based
on its type and then pass this to the lookup process.
2. When resolving something like 'field' within a method,
the lookup process can ask to compute one of these
at the right time with a MethodScopesLookupHelper.
at the right time with a ReceiverScopeHelper.
*/
class MethodLookupHelper {
public:
Expand All @@ -1375,7 +1375,7 @@ class MethodLookupHelper {
are checked for by searching the method reciver scopes
at the time that the method signature is encountered in the
process of searching parent scopes. This type includes
a method that can return an appropriate MethodApplicableLookupHelper
a method that can return an appropriate MethodLookupHelper
to handle the method receiver scopes.
*/
class ReceiverScopeHelper {
Expand Down

0 comments on commit 0d4d17d

Please sign in to comment.