We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5403239 commit b54862dCopy full SHA for b54862d
1 file changed
documentation/SA1600.md
@@ -44,7 +44,7 @@ public string JoinNames(string firstName, string lastName)
44
}
45
```
46
47
-The next example shows a method that is inherited from a base class:
+The next example shows a method that inherits documentation from a method in the base class:
48
49
```csharp
50
/// <summary>
@@ -55,7 +55,7 @@ class Vehicle
55
56
/// Accelerates the vehicle.
57
/// </summary>
58
- public virtual void accelerate()
+ public virtual void Accelerate()
59
{
60
Console.WriteLine("Vehicle is accelerating");
61
@@ -67,7 +67,7 @@ class Vehicle
67
class Car : Vehicle
68
69
/// <inheritdoc/>
70
- public override void accelerate()
+ public override void Accelerate()
71
72
Console.Writeline("Car is accelerating");
73
0 commit comments