Bug 1879991 - Update Example in Comment on ProcessArguments. r=devtools-reviewers,nchevobbe DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D201663
This commit is contained in:
Redfire 2024-02-13 09:30:43 +00:00
parent 790e635c39
commit 5f3bebe82a

View File

@ -1787,7 +1787,7 @@ static void MakeFormatString(nsCString& aFormat, int32_t aInteger,
// The output is an array where any object is a separated item, the rest is
// unified in a format string.
// Example if the input is:
// "string: %s, integer: %d, object: %o, double: %d", 's', 1, window, 0.9
// "string: %s, integer: %d, object: %o, double: %f", 's', 1, window, 0.9
// The output will be:
// [ "string: s, integer: 1, object: ", window, ", double: 0.9" ]
//