diff --git a/components/decimal/README.md b/components/decimal/README.md
index 76ce034c677..61e377e3670 100644
--- a/components/decimal/README.md
+++ b/components/decimal/README.md
@@ -52,7 +52,7 @@ let fixed_decimal = {
assert_writeable_eq!(fdf.format(&fixed_decimal), "2,000.50");
```
-#### Format a number using an alternative numbering system
+### Format a number using an alternative numbering system
Numbering systems specified in the `-u-nu` subtag will be followed.
@@ -73,69 +73,6 @@ let fixed_decimal = SignedFixedDecimal::from(1000007);
assert_writeable_eq!(fdf.format(&fixed_decimal), "๑,๐๐๐,๐๐๗");
```
-#### Get the resolved numbering system
-
-Inspect the data request to get the resolved numbering system (public but unstable):
-
-```rust
-use icu_provider::prelude::*;
-use icu::decimal::FixedDecimalFormatter;
-use icu::decimal::provider::DecimalDigitsV1Marker;
-use icu::locale::locale;
-use std::any::TypeId;
-use std::cell::RefCell;
-
-struct NumberingSystemInspectionProvider