Skip to content

Commit edc388e

Browse files
committed
Fixes docfx docs cross referencing the CTRE package
1 parent 25a807c commit edc388e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WPILib/Interfaces/ICANSpeedController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public enum LimitMode
151151
};
152152

153153
/// <summary>
154-
/// Interface for CAN Speed Controllers like <see cref="CTRE.CANTalon">CANTalon</see> and <see cref="CANJaguar"/>
154+
/// Interface for CAN Speed Controllers like @CTRE.CANTalon and <see cref="CANJaguar"/>
155155
/// </summary>
156156
// ReSharper disable once PossibleInterfaceMemberAmbiguity
157157
public interface ICANSpeedController : ISpeedController, IPIDInterface, ILiveWindowSendable

WPILib/TalonSRX.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace WPILib
44
{
55
/// <summary>
66
/// Cross the Road Electronics (CTRE) Talon SRX Speed Controller with PWM control</summary>
7-
/// <seealso cref="CANTalon"> for CAN control of Talon SRX</seealso>
7+
/// <remarks> See @CTRE.CANTalon for CAN contol of Talon SRX </remarks>
88
public class TalonSRX : PWMSpeedController
99
{
1010
/// <summary>
@@ -35,7 +35,7 @@ protected void InitTalonSRX()
3535
/// <summary>
3636
/// Creates a new Talon SRX Motor Controller in PWM mode.
3737
/// </summary>
38-
/// <remarks>See <see cref="CANTalon"/> for using a TalonSRX in CAN mode.</remarks>
38+
/// <remarks>See @CTRE.CANTalon for using a TalonSRX in CAN mode.</remarks>
3939
/// <param name="channel">The PWM Channel that the TalonSRX is attached to. 0-9 are on-board, 10-19 are on the MXP port</param>
4040
public TalonSRX(int channel)
4141
: base(channel)

0 commit comments

Comments
 (0)