chore: fix beta VS experimental (#9496)

This commit is contained in:
jif-oai
2026-01-19 20:39:23 +01:00
committed by GitHub
parent b11e96fb04
commit 070935d5e8
2 changed files with 29 additions and 24 deletions

View File

@@ -459,8 +459,8 @@ enum FeaturesSubcommand {
fn stage_str(stage: codex_core::features::Stage) -> &'static str {
use codex_core::features::Stage;
match stage {
Stage::Experimental => "experimental",
Stage::Beta { .. } => "beta",
Stage::Beta => "experimental",
Stage::Experimental { .. } => "beta",
Stage::Stable => "stable",
Stage::Deprecated => "deprecated",
Stage::Removed => "removed",