Fix docstring typo starts -> stops (#40031)

This commit is contained in:
Travis Reid
2025-08-31 19:32:59 -05:00
committed by GitHub
parent 5ee093b13d
commit 9f36a3b4ea

View File

@@ -1,6 +1,6 @@
namespace Content.Shared.Movement.Pulling.Events; namespace Content.Shared.Movement.Pulling.Events;
/// <summary> /// <summary>
/// Event raised directed BOTH at the puller and pulled entity when a pull starts. /// Event raised directed BOTH at the puller and pulled entity when a pull stops.
/// </summary> /// </summary>
public sealed class PullStoppedMessage(EntityUid pullerUid, EntityUid pulledUid) : PullMessage(pullerUid, pulledUid); public sealed class PullStoppedMessage(EntityUid pullerUid, EntityUid pulledUid) : PullMessage(pullerUid, pulledUid);