mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-04-02 16:32:36 +02:00
DOC: print() and friends: typo fixes
Some typographical fixes. In the generated documentation for `tprintf()`, the documentation for the parameter `values` is missing because `@param msg` should be `@param values`.
This commit is contained in:
6
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
6
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@ -4832,7 +4832,7 @@ export interface NS {
|
||||
* RAM cost: 0 GB
|
||||
*
|
||||
* see: https://github.com/alexei/sprintf.js
|
||||
* @param format - format of the message
|
||||
* @param format - Format of the message.
|
||||
* @param args - Value(s) to be printed.
|
||||
*/
|
||||
printf(format: string, ...args: any[]): void;
|
||||
@ -4852,8 +4852,8 @@ export interface NS {
|
||||
* RAM cost: 0 GB
|
||||
*
|
||||
* see: https://github.com/alexei/sprintf.js
|
||||
* @param format - format of the message
|
||||
* @param msg - Value to be printed.
|
||||
* @param format - Format of the message.
|
||||
* @param values - Value(s) to be printed.
|
||||
*/
|
||||
tprintf(format: string, ...values: any[]): void;
|
||||
|
||||
|
Reference in New Issue
Block a user