fix documentation typo (#1203)

This commit is contained in:
p0n24 2024-04-01 05:53:51 +09:00 committed by GitHub
parent 524714601e
commit 7ab4ad8174
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

@ -29,6 +29,6 @@ Returns an object containing the Players hacking related multipliers. These m
```js ```js
const mults = ns.getHackingMultipliers(); const mults = ns.getHackingMultipliers();
print(`chance: ${mults.chance}`); print(`chance: ${mults.chance}`);
print(`growthL ${mults.growth}`); print(`growth: ${mults.growth}`);
``` ```

@ -6371,7 +6371,7 @@ export interface NS {
* ```js * ```js
* const mults = ns.getHackingMultipliers(); * const mults = ns.getHackingMultipliers();
* print(`chance: ${mults.chance}`); * print(`chance: ${mults.chance}`);
* print(`growthL ${mults.growth}`); * print(`growth: ${mults.growth}`);
* ``` * ```
* @returns Object containing the Players hacking related multipliers. * @returns Object containing the Players hacking related multipliers.
*/ */