You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/DependencyPropertyGenerator/CommunityToolkit.DependencyPropertyGenerator.CodeFixers/UseGeneratedDependencyPropertyOnManualPropertyCodeFixer.cs
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -89,17 +89,17 @@ public override async Task RegisterCodeFixesAsync(CodeFixContext context)
89
89
/// </summary>
90
90
/// <param name="document">The original document being fixed.</param>
91
91
/// <param name="semanticModel">The <see cref="SemanticModel"/> instance for the current compilation.</param>
92
-
/// <param name="observablePropertyAttributeList">The resulting attribute list, if successfully retrieved.</param>
93
-
/// <returns>Whether <paramref name="observablePropertyAttributeList"/> could be retrieved successfully.</returns>
/// <param name="propertyDeclaration">The <see cref="PropertyDeclarationSyntax"/> for the property being updated.</param>
161
161
/// <param name="fieldDeclaration">The <see cref="FieldDeclarationSyntax"/> for the declared property to remove.</param>
162
-
/// <param name="observablePropertyAttributeList">The <see cref="AttributeListSyntax"/> with the attribute to add.</param>
162
+
/// <param name="generatedDependencyPropertyAttributeList">The <see cref="AttributeListSyntax"/> with the attribute to add.</param>
163
163
/// <param name="syntaxEditor">The <see cref="SyntaxEditor"/> instance to use.</param>
164
164
/// <param name="defaultValueExpression">The expression for the default value of the property, if present</param>
165
165
/// <returns>An updated document with the applied code fix, and <paramref name="propertyDeclaration"/> being replaced with a partial property.</returns>
0 commit comments