File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/PolySharp.SourceGenerators Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public void Initialize(IncrementalGeneratorInitializationContext context)
18
18
context . AnalyzerConfigOptionsProvider
19
19
. Select ( GetGenerationOptions ) ;
20
20
21
- // Get the sequence of all avaailable types that could be generated
21
+ // Get the sequence of all available types that could be generated
22
22
IncrementalValuesProvider < AvailableType > availableTypes =
23
23
context . CompilationProvider
24
24
. SelectMany ( GetAvailableTypes ) ;
@@ -33,7 +33,7 @@ public void Initialize(IncrementalGeneratorInitializationContext context)
33
33
// Generate source for the current type depending on current accessibility
34
34
context . RegisterSourceOutput ( generatedTypes , EmitGeneratedType ) ;
35
35
36
- // Get all potential type forwarded type names
36
+ // Get all potential forwarded type names
37
37
IncrementalValuesProvider < string > typeForwardNames =
38
38
context . CompilationProvider
39
39
. SelectMany ( GetCoreLibTypes ) ;
@@ -48,4 +48,4 @@ public void Initialize(IncrementalGeneratorInitializationContext context)
48
48
// Generate the type forwards, if any
49
49
context . RegisterImplementationSourceOutput ( filteredTypeForwardNames , EmitTypeForwards ) ;
50
50
}
51
- }
51
+ }
You can’t perform that action at this time.
0 commit comments