Skip to content

Commit d434929

Browse files
authored
Fix malformed XML documentation in PersistentStateAttribute (dotnet#64113)
1 parent 9bdce75 commit d434929

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Components/Components/src/PersistentStateAttribute.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ public sealed class PersistentStateAttribute : CascadingParameterAttributeBase
1515
/// </summary>
1616
/// <remarks>
1717
/// By default it always restores the value on all situations.
18-
/// Use <code cref="RestoreBehavior.SkipInitialValue"/> to skip restoring the initial value
18+
/// Use <see cref="RestoreBehavior.SkipInitialValue"/> to skip restoring the initial value
1919
/// when the host starts up.
20-
/// Use <code cref="RestoreBehavior.SkipLastSnapshot"/> to skip restoring the last value captured
20+
/// Use <see cref="RestoreBehavior.SkipLastSnapshot"/> to skip restoring the last value captured
2121
/// the last time the current host was shut down.
2222
/// </remarks>
2323
public RestoreBehavior RestoreBehavior { get; set; } = RestoreBehavior.Default;

0 commit comments

Comments
 (0)