Skip to content

Commit 42d3211

Browse files
committed
Fix typos
1 parent a943c7b commit 42d3211

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/DependencyPropertyGenerator/CommunityToolkit.DependencyPropertyGenerator.SourceGenerators/Extensions/CompilationExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static bool IsLanguageVersionPreview(this Compilation compilation)
3434
}
3535

3636
/// <summary>
37-
/// Gets whether the current target is a WinRT application (ie. legacy UWP).
37+
/// Gets whether the current target is a WinRT application (i.e. legacy UWP).
3838
/// </summary>
3939
/// <param name="compilation">The input <see cref="Compilation"/> instance to inspect.</param>
4040
/// <returns>Whether the current target is a WinRT application.</returns>

components/DependencyPropertyGenerator/CommunityToolkit.DependencyPropertyGenerator.SourceGenerators/Helpers/IndentedTextWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public void IncreaseIndent()
9797
}
9898

9999
// Set both the current indentation and the current position in the indentations
100-
// array to the expected indentation for the incremented level (ie. one level more).
100+
// array to the expected indentation for the incremented level (i.e. one level more).
101101
this.currentIndentation = this.availableIndentations[this.currentIndentationLevel]
102102
??= this.availableIndentations[this.currentIndentationLevel - 1] + DefaultIndentation;
103103
}

0 commit comments

Comments
 (0)