DOC: Fix parameter name in documentation (#525)

This commit is contained in:
Nikolai Korolev 2023-05-25 21:26:43 +01:00 committed by GitHub
parent f3c32d70f2
commit b72eb125f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,7 +42,7 @@ export function influenceStockThroughServerHack(server: Server, moneyHacked: num
* server is grown (grow()). The chance of the grow() to increase the stock's
* second-order forecast is dependent on how much money is added to the server
* @param {Server} server - Server being grow()n
* @param {number} moneyHacked - Amount of money added to the server
* @param {number} moneyGrown - Amount of money added to the server
*/
export function influenceStockThroughServerGrow(server: Server, moneyGrown: number): void {
const orgName = server.organizationName;