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:
Duck McSouls 2022-09-30 14:19:19 +10:00
parent 5e4a393495
commit ebdeb15d5a

@ -4832,7 +4832,7 @@ export interface NS {
* RAM cost: 0 GB * RAM cost: 0 GB
* *
* see: https://github.com/alexei/sprintf.js * 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. * @param args - Value(s) to be printed.
*/ */
printf(format: string, ...args: any[]): void; printf(format: string, ...args: any[]): void;
@ -4852,8 +4852,8 @@ export interface NS {
* RAM cost: 0 GB * RAM cost: 0 GB
* *
* see: https://github.com/alexei/sprintf.js * see: https://github.com/alexei/sprintf.js
* @param format - format of the message * @param format - Format of the message.
* @param msg - Value to be printed. * @param values - Value(s) to be printed.
*/ */
tprintf(format: string, ...values: any[]): void; tprintf(format: string, ...values: any[]): void;