fix(nesdoctor): the closing prose still said "launch times"

Missed when the histogram was corrected: the tool spent a paragraph asking
people to send the JSON and described it as holding "installed titles with
sizes and launch times", which is the same claim the histogram itself no
longer makes. Steam stores when a title was last played, not each time it was
launched.

Found by running the installer end to end after the release — the shipped
0.3.0 binary prints it. Fixed here for the next one; it is prose in the
closing paragraph, not a number anybody acted on.

Same wording in the --json flag's doc comment, in the submit URL's comment,
and in the consent prompt that asks to read the library at all. That last one
matters most of the four: it is what somebody reads before saying yes.
This commit is contained in:
Wanjohi
2026-09-03 22:40:36 +03:00
parent d8e5c19181
commit aaa1bbd0f4
3 changed files with 7 additions and 7 deletions

View File

@@ -148,7 +148,7 @@ pub fn run(ctx: &Ctx) -> Answers {
println!(
"\x1b[1mOne permission.\x1b[0m Steam keeps, on this disk, the size of each game you"
);
println!("have installed and the time you last launched it. Reading it answers three");
println!("have installed and when you last played it. Reading it answers three");
println!("things we would otherwise have to ask you badly: how big a library is, what");
println!("shape it has, and what hours you actually play.");
println!();

View File

@@ -78,7 +78,7 @@ struct Args {
///
/// Relative to the working directory, which during development is a git
/// checkout -- and this file contains the operator's own machine: home
/// paths, installed titles, launch times. It was committed to the public
/// paths, installed titles, when each was last played. It was committed to the public
/// repository once by accident. `.gitignore` now covers the default name,
/// and the default is deliberately not something like `report.json` that
/// an ignore rule would miss.
@@ -299,15 +299,15 @@ fn main() {
args.json.display()
);
println!(
"\x1b[2m full latency series, and your installed titles with sizes and launch\x1b[0m"
"\x1b[2m full latency series, and your installed titles with sizes and when\x1b[0m"
);
println!(
"\x1b[2m times. It is more useful to us than anything above, because it is what\x1b[0m"
"\x1b[2m each was last played. It is more useful to us than anything above,\x1b[0m"
);
println!(
"\x1b[2m lets us size a real game library. Have a read and send it along if\x1b[0m"
"\x1b[2m because it is what lets us size a real game library. Have a read and\x1b[0m"
);
println!("\x1b[2m nothing in there bothers you.\x1b[0m");
println!("\x1b[2m send it along if nothing in there bothers you.\x1b[0m");
}
// The one thing we can never ask afterwards.

View File

@@ -417,7 +417,7 @@ fn enc(s: &str) -> String {
///
/// Carries more than the clipboard line does, because it is not something
/// anyone has to eyeball in a chat window: every check individually, the full
/// latency triple, the 24-hour launch histogram, and the five largest titles.
/// latency triple, the 24-hour last-played histogram, and the five largest titles.
pub fn submit_url(base: &str, f_: &Full) -> String {
let (sys, host, net, steam, answers, verdict, region) = (
f_.sys,