Skip to content

Commit dd0da02

Browse files
workgroupengineeringmaxkatz6
authored andcommitted
fix(XML Docs): Rename inheritdocs to inheritdoc (#14093)
1 parent fc677b2 commit dd0da02

13 files changed

+14
-14
lines changed

src/Avalonia.Base/Animation/Animators/BoolAnimator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/// </summary>
66
internal class BoolAnimator : Animator<bool>
77
{
8-
/// <inheritdocs/>
8+
/// <inheritdoc/>
99
public override bool Interpolate(double progress, bool oldValue, bool newValue)
1010
{
1111
if(progress >= 1d)

src/Avalonia.Base/Animation/Animators/ByteAnimator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal class ByteAnimator : Animator<byte>
99
{
1010
const double maxVal = (double)byte.MaxValue;
1111

12-
/// <inheritdocs/>
12+
/// <inheritdoc/>
1313
public override byte Interpolate(double progress, byte oldValue, byte newValue)
1414
{
1515
var normOV = oldValue / maxVal;

src/Avalonia.Base/Animation/Animators/DecimalAnimator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/// </summary>
66
internal class DecimalAnimator : Animator<decimal>
77
{
8-
/// <inheritdocs/>
8+
/// <inheritdoc/>
99
public override decimal Interpolate(double progress, decimal oldValue, decimal newValue)
1010
{
1111
return ((newValue - oldValue) * (decimal)progress) + oldValue;

src/Avalonia.Base/Animation/Animators/DoubleAnimator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/// </summary>
66
internal class DoubleAnimator : Animator<double>
77
{
8-
/// <inheritdocs/>
8+
/// <inheritdoc/>
99
public override double Interpolate(double progress, double oldValue, double newValue)
1010
{
1111
return ((newValue - oldValue) * progress) + oldValue;

src/Avalonia.Base/Animation/Animators/FloatAnimator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/// </summary>
66
internal class FloatAnimator : Animator<float>
77
{
8-
/// <inheritdocs/>
8+
/// <inheritdoc/>
99
public override float Interpolate(double progress, float oldValue, float newValue)
1010
{
1111
return (float)(((newValue - oldValue) * progress) + oldValue);

src/Avalonia.Base/Animation/Animators/Int16Animator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal class Int16Animator : Animator<Int16>
99
{
1010
const double maxVal = (double)Int16.MaxValue;
1111

12-
/// <inheritdocs/>
12+
/// <inheritdoc/>
1313
public override Int16 Interpolate(double progress, Int16 oldValue, Int16 newValue)
1414
{
1515
var normOV = oldValue / maxVal;

src/Avalonia.Base/Animation/Animators/Int32Animator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal class Int32Animator : Animator<Int32>
99
{
1010
const double maxVal = (double)Int32.MaxValue;
1111

12-
/// <inheritdocs/>
12+
/// <inheritdoc/>
1313
public override Int32 Interpolate(double progress, Int32 oldValue, Int32 newValue)
1414
{
1515
var normOV = oldValue / maxVal;

src/Avalonia.Base/Animation/Animators/Int64Animator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal class Int64Animator : Animator<Int64>
99
{
1010
const double maxVal = (double)Int64.MaxValue;
1111

12-
/// <inheritdocs/>
12+
/// <inheritdoc/>
1313
public override Int64 Interpolate(double progress, Int64 oldValue, Int64 newValue)
1414
{
1515
var normOV = oldValue / maxVal;

src/Avalonia.Base/Animation/Animators/TransformAnimator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ internal class TransformAnimator : Animator<double>
9292
return null;
9393
}
9494

95-
/// <inheritdocs/>
95+
/// <inheritdoc/>
9696
public override double Interpolate(double p, double o, double n) => 0;
9797
}
9898
}

src/Avalonia.Base/Animation/Animators/UInt16Animator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal class UInt16Animator : Animator<UInt16>
99
{
1010
const double maxVal = (double)UInt16.MaxValue;
1111

12-
/// <inheritdocs/>
12+
/// <inheritdoc/>
1313
public override UInt16 Interpolate(double progress, UInt16 oldValue, UInt16 newValue)
1414
{
1515
var normOV = oldValue / maxVal;

src/Avalonia.Base/Animation/Animators/UInt32Animator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal class UInt32Animator : Animator<UInt32>
99
{
1010
const double maxVal = (double)UInt32.MaxValue;
1111

12-
/// <inheritdocs/>
12+
/// <inheritdoc/>
1313
public override UInt32 Interpolate(double progress, UInt32 oldValue, UInt32 newValue)
1414
{
1515
var normOV = oldValue / maxVal;

src/Avalonia.Base/Animation/Animators/UInt64Animator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal class UInt64Animator : Animator<UInt64>
99
{
1010
const double maxVal = (double)UInt64.MaxValue;
1111

12-
/// <inheritdocs/>
12+
/// <inheritdoc/>
1313
public override UInt64 Interpolate(double progress, UInt64 oldValue, UInt64 newValue)
1414
{
1515
var normOV = oldValue / maxVal;

src/Avalonia.Base/Animation/TransitionBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public Easing Easing
7777
set { SetAndRaise(EasingProperty, ref _easing, value); }
7878
}
7979

80-
/// <inheritdocs/>
80+
/// <inheritdoc/>
8181
[DisallowNull]
8282
public AvaloniaProperty? Property
8383
{
@@ -91,7 +91,7 @@ AvaloniaProperty ITransition.Property
9191
set => Property = value;
9292
}
9393

94-
/// <inheritdocs/>
94+
/// <inheritdoc/>
9595
IDisposable ITransition.Apply(Animatable control, IClock clock, object? oldValue, object? newValue)
9696
=> Apply(control, clock, oldValue, newValue);
9797

0 commit comments

Comments
 (0)