Skip to content

Commit 789e86b

Browse files
committed
[Fix] Docs
1 parent 1b0c9b7 commit 789e86b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

RL2.API/APIEndpoints/Player.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ public static class HeirGeneration
421421
/// Used to modify character data after character randomization by either the Contrarian trait or by the use of the Transmogrifier<br></br>
422422
/// Ran at the end of <see cref="CharacterCreator.ApplyRandomizeKitTrait"/>
423423
/// </summary>
424-
/// <param name="characterData">The randomized heirs CharacterData</param>
424+
/// <param name="data">The randomized heirs CharacterData</param>
425425
public delegate void ModifyCharacterRandomization_delegate(CharacterData data);
426426

427427
/// <inheritdoc cref="ModifyCharacterRandomization_delegate"/>
@@ -434,7 +434,7 @@ internal static void ModifyCharacterRandomization_Invoke(CharacterData data) {
434434
/// <summary>
435435
/// Used to modify character data of generated heirs
436436
/// </summary>
437-
/// <param name="characterData">The generated heirs <see cref="CharacterData" /></param>
437+
/// <param name="data">The generated heirs <see cref="CharacterData" /></param>
438438
/// <param name="classLocked">Whether the heirs class was locked by a Soul Shop ugrade</param>
439439
/// <param name="spellLocked">Whether the heirs spell was locked by a Soul Shop ugrade</param>
440440
public delegate void ModifyCharacterData_delegate(CharacterData data, bool classLocked, bool spellLocked);
@@ -450,7 +450,7 @@ internal static void ModifyCharacterData_Invoke(CharacterData data, bool classLo
450450
/// Used to modify look data of generated heirs
451451
/// </summary>
452452
/// <param name="lookData">The generated heirs <see cref="PlayerLookController" /></param>
453-
/// <param name="characterData">The generated heirs <see cref="CharacterData" /></param>
453+
/// <param name="data">The generated heirs <see cref="CharacterData" /></param>
454454
public delegate void ModifyCharacterLook_delegate(PlayerLookController lookData, CharacterData data);
455455

456456
/// <inheritdoc cref="ModifyCharacterLook_delegate"/>

0 commit comments

Comments
 (0)