From 1e789355a15c3a4335237a097dbcb7b9ca15512f Mon Sep 17 00:00:00 2001 From: Hugo Martinet Date: Wed, 11 Mar 2026 16:53:17 +0100 Subject: [PATCH] match the current incomplete_feature/experimental flag removal practice see https://github.com/rust-lang/rust/pull/153053 --- src/how_to/experiment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/how_to/experiment.md b/src/how_to/experiment.md index c2839b9..199ddde 100644 --- a/src/how_to/experiment.md +++ b/src/how_to/experiment.md @@ -12,7 +12,7 @@ If you are an experienced Rust contributor who would like to start an experiment * The liaison is the connection to the lang-team. They can check in with you from time to time to see how the work is going and relay those updates to the lang-team (of course, you're always welcome to join meetings yourself too!). They can also help to discuss problems that arise. * Once you've found a liaison, open a PR adding a new feature gate to the compiler and create an associated tracking issue. * The PR and tracking issue should include a write-up documenting the motivation and outline of what they are trying to achieve. - * The feature gate should be marked as 'experimental', so that users get warnings if they try to use it. This flag has to stay until an RFC is accepted, even if the implementation is in good shape. + * The feature gate should be marked as 'experimental', so that users get warnings if they try to use it. Once the implementation is in good shape, this flag can be removed. * The lang-team liaison will "second" the PR, starting an FCP. Once the FCP completes, the PR can land and implementation work begins (always gated under the new feature gate). * **Approving a new feature gate does not imply support for the feature.** It implies only that the lang team thinks it is worth doing the experiment to see what results. * Note to lang team members: If you have concerns about the feasibility or wisdom of the feature, the right course of action is usually to allow experimentation to continue, but ensure that your concerns are noted on the tracking issue. This allows the experimentors to try and gather data and address your concern.