Missing capitalization in ns.gang.ascendMember()

The return description of the function ns.gang.ascendMember() has a missing capitalization.  Fixes #4091.
This commit is contained in:
Duck McSouls 2022-09-23 20:06:36 +10:00
parent b31c64fb9f
commit 98d43acf9f

@ -3511,7 +3511,7 @@ export interface Gang {
* Ascend the specified Gang Member. * Ascend the specified Gang Member.
* *
* @param memberName - Name of member to ascend. * @param memberName - Name of member to ascend.
* @returns Object with info about the ascension results. undefined if ascension did not occur. * @returns Object with info about the ascension results. Undefined if ascension did not occur.
*/ */
ascendMember(memberName: string): GangMemberAscension | undefined; ascendMember(memberName: string): GangMemberAscension | undefined;