aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/factory.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-04 05:39:41 +0900
committernsfisis <nsfisis@gmail.com>2026-08-04 05:56:52 +0900
commitb45e04865df335a9aedbf2bdd5b17353c1598fa5 (patch)
tree076c6eeb6aa06cac8f6b056a86d4f7cb2880a1f0 /crates/shirabe/src/factory.rs
parent2cb2f128cffb4e664145c9a8a392b9666d014459 (diff)
downloadphp-shirabe-b45e04865df335a9aedbf2bdd5b17353c1598fa5.tar.gz
php-shirabe-b45e04865df335a9aedbf2bdd5b17353c1598fa5.tar.zst
php-shirabe-b45e04865df335a9aedbf2bdd5b17353c1598fa5.zip
docs: state code facts instead of porting-phase progress
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/factory.rs')
-rw-r--r--crates/shirabe/src/factory.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/factory.rs b/crates/shirabe/src/factory.rs
index 903f6d35..9a84117e 100644
--- a/crates/shirabe/src/factory.rs
+++ b/crates/shirabe/src/factory.rs
@@ -576,7 +576,7 @@ impl Factory {
// initialize composer
//
- // Phase C: build the whole Composer graph at once with Rc::new_cyclic so that
+ // The whole Composer graph is built at once with Rc::new_cyclic so that
// back-references (the EventDispatcher's composer, etc.) can hold a
// PartialComposerWeak (Weak<RefCell<InnerComposer>>). The closure cannot return a
// Result, so construction errors are surfaced through `build_error`.
@@ -1444,7 +1444,7 @@ impl Factory {
config: &std::rc::Rc<std::cell::RefCell<Config>>,
options: IndexMap<String, PhpMixed>,
) -> anyhow::Result<HttpDownloader> {
- // TODO(plugin): static `$warned` flag — port as a OnceCell or atomic in Phase B.
+ // TODO(plugin): static `$warned` flag — port as a OnceCell or atomic.
static mut WARNED: bool = false;
let mut disable_tls = false;
// allow running the config command if disable-tls is in the arg list, even if openssl is missing, to allow disabling it via the config command