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
2 changed files with 2 additions and 2 deletions

View File

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

View File

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