From 561924db750cbb4e4c183f9616472ed9a5b0fc7f Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 12 Aug 2026 00:19:10 +0900 Subject: docs(todo): retag TODO markers by root cause Co-Authored-By: Claude Opus 5 (1M context) --- crates/shirabe/src/io/console_io.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/shirabe/src/io') diff --git a/crates/shirabe/src/io/console_io.rs b/crates/shirabe/src/io/console_io.rs index 060fa0c6..6e78a105 100644 --- a/crates/shirabe/src/io/console_io.rs +++ b/crates/shirabe/src/io/console_io.rs @@ -310,7 +310,7 @@ impl ConsoleIO { } /// Ensures a string is valid UTF-8, replacing invalid byte sequences with '?' - // TODO(phase-c): PHP sanitizes invalid byte sequences here, but `&str` is always valid UTF-8 + // TODO(bytes): PHP sanitizes invalid byte sequences here, but `&str` is always valid UTF-8 // so this is a no-op for now. The codebase does not yet strictly distinguish `Vec` from // `String`; once it does, this should take `&[u8]` and lossily convert it to `String`. fn ensure_valid_utf8(string: &str) -> String { @@ -438,7 +438,7 @@ impl IOInterfaceImmutable for ConsoleIO { self.ask_question(&question) } - // TODO(phase-c): ask_confirmation and ask_and_hide_answer still collapse ask_question + // TODO(error-model): ask_confirmation and ask_and_hide_answer still collapse ask_question // errors with .expect() instead of propagating them; extending Result propagation to // them is a further IOInterface signature change that has not been decided yet. fn ask_confirmation(&self, question: String, default: bool) -> bool { -- cgit v1.3.1-4-g156e