Skip to content

Commit cf9db71

Browse files
chore: use correct function name in comments
Just a missed search and replace.
1 parent 9d031c6 commit cf9db71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proto/merge.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ LOOP:
173173
}
174174

175175
// descriptorProcessor runs the heavy lifting for concurrent registry merging.
176-
// See the concurrentMergeFileDescriptors function for how everything coordinates.
176+
// See the mergedFileDescriptors function for how everything coordinates.
177177
type descriptorProcessor struct {
178178
processWG sync.WaitGroup
179179
globalFileCh chan protoreflect.FileDescriptor
@@ -185,9 +185,9 @@ type descriptorProcessor struct {
185185
}
186186

187187
// process reads from p.globalFileCh and p.appFileCh, processing each file descriptor as appropriate,
188-
// and sends the processed file descriptors through p.fdCh for eventual return from concurrentMergeFileDescriptors.
188+
// and sends the processed file descriptors through p.fdCh for eventual return from mergedFileDescriptors.
189189
// Any errors during processing are sent to ec.ProcessErrCh,
190-
// which collects the errors also for possible return from concurrentMergeFileDescriptors.
190+
// which collects the errors also for possible return from mergedFileDescriptors.
191191
//
192192
// If validate is true, extra work is performed to validate import paths
193193
// and to check validity of duplicated file descriptors.

0 commit comments

Comments
 (0)