Skip to content

Commit a5abb7c

Browse files
authored
remove term "master" (#958)
1 parent 88c4de8 commit a5abb7c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

standard/documentation-comments.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -169,26 +169,26 @@ where
169169

170170
<!-- Example: {template:"standalone-lib-without-using", name:"TagException", replaceEllipsis:true, ignoredWarnings:["CS1591"]} -->
171171
```csharp
172-
class MasterFileFormatCorruptException : System.Exception { ... }
173-
class MasterFileLockedOpenException : System.Exception { ... }
172+
class PrimaryFileFormatCorruptException : System.Exception { ... }
173+
class PrimaryFileLockedOpenException : System.Exception { ... }
174174

175175
public class DataBaseOperations
176176
{
177-
/// <exception cref="MasterFileFormatCorruptException">
178-
/// Thrown when the master file is corrupted.
177+
/// <exception cref="PrimaryFileFormatCorruptException">
178+
/// Thrown when the primary file is corrupted.
179179
/// </exception>
180-
/// <exception cref="MasterFileLockedOpenException">
181-
/// Thrown when the master file is already open.
180+
/// <exception cref="PrimaryFileLockedOpenException">
181+
/// Thrown when the primary file is already open.
182182
/// </exception>
183183
public static void ReadRecord(int flag)
184184
{
185185
if (flag == 1)
186186
{
187-
throw new MasterFileFormatCorruptException();
187+
throw new PrimaryFileFormatCorruptException();
188188
}
189189
else if (flag == 2)
190190
{
191-
throw new MasterFileLockedOpenException();
191+
throw new PrimaryFileLockedOpenException();
192192
}
193193
...
194194
}

0 commit comments

Comments
 (0)