Skip to content

Commit b2b1dbf

Browse files
committed
Improve ForeignKeyAttribute doc comments
1 parent 939d436 commit b2b1dbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SQLiteSharp/ForeignKeyAction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public enum ForeignKeyAction {
1212
[EnumMember(Value = "NO ACTION")]
1313
NoAction,
1414
/// <summary>
15-
/// The referenced key cannot be changed while it still has references.
15+
/// The referenced key is prevented from being changed while it is still referenced.
1616
/// </summary>
1717
[EnumMember(Value = "RESTRICT")]
1818
Restrict,
@@ -22,7 +22,7 @@ public enum ForeignKeyAction {
2222
[EnumMember(Value = "SET NULL")]
2323
SetNull,
2424
/// <summary>
25-
/// The references are set to the default value if the referenced key is changed.
25+
/// The references are set to their default value if the referenced key is changed.
2626
/// </summary>
2727
[EnumMember(Value = "SET DEFAULT")]
2828
SetDefault,

0 commit comments

Comments
 (0)