Skip to content

Commit 13b14b6

Browse files
jeffhandleysirntar
authored andcommitted
Clean up the notes on experimental APIs to simplify for maintenance (dotnet#107959)
1 parent ab19ac5 commit 13b14b6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/project/list-of-diagnostics.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,8 @@ Diagnostic id values for experimental APIs must not be recycled, as that could s
306306

307307
| Diagnostic ID | Introduced | Removed | Description |
308308
| :---------------- | ---------: | ------: | :---------- |
309-
| __`SYSLIB5001`__ | .NET 9 | TBD | `Tensor<T>` and related APIs in System.Numerics.Tensors are experimental in .NET 9 |
310-
| __`SYSLIB5002`__ | .NET 9 | TBD | `SystemColors` alternate colors are experimental in .NET 9 |
311-
| __`SYSLIB5003`__ | .NET 9 | TBD | `System.Runtime.Intrinsics.Arm.Sve` is experimental in .NET 9 |
312-
| __`SYSLIB5004`__ | .NET 9 | TBD | `X86Base.DivRem` is experimental in .NET 9 since performance is not as optimized as `T.DivRem` |
313-
| __`SYSLIB5005`__ | .NET 9 | TBD | `System.Formats.Nrbf` is experimental in .NET 9 |
309+
| __`SYSLIB5001`__ | .NET 9 | TBD | `Tensor<T>` and related APIs in System.Numerics.Tensors are experimental |
310+
| __`SYSLIB5002`__ | .NET 9 | TBD | `SystemColors` alternate colors are experimental |
311+
| __`SYSLIB5003`__ | .NET 9 | TBD | `System.Runtime.Intrinsics.Arm.Sve` is experimental |
312+
| __`SYSLIB5004`__ | .NET 9 | TBD | `X86Base.DivRem` is experimental since performance is not as optimized as `T.DivRem` |
313+
| __`SYSLIB5005`__ | .NET 9 | TBD | `System.Formats.Nrbf` is experimental |

src/libraries/Common/src/System/Experimentals.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ internal static class Experimentals
1616
// but retained in the table in docs\project\list-of-diagnostics.md to prevent reuse. Be sure to remove
1717
// suppressions from the codebase as well.
1818

19-
// Tensor<T> and related APIs in System.Numerics.Tensors are experimental in .NET 9
19+
// Tensor<T> and related APIs in System.Numerics.Tensors are experimental
2020
internal const string TensorTDiagId = "SYSLIB5001";
2121

22-
// SystemColors alternate colors are marked as [Experimental] in .NET 9
22+
// SystemColors alternate colors are marked as [Experimental]
2323
internal const string SystemColorsDiagId = "SYSLIB5002";
2424

25-
// System.Runtime.Intrinsics.Arm.Sve is experimental in .NET 9
25+
// System.Runtime.Intrinsics.Arm.Sve is experimental
2626
internal const string ArmSveDiagId = "SYSLIB5003";
2727

28-
// X86Base.DivRem is experimental in .NET 9 since performance is not as optimized as T.DivRem
28+
// X86Base.DivRem is experimental since performance is not as optimized as T.DivRem
2929
internal const string X86BaseDivRemDiagId = "SYSLIB5004";
3030

31-
// System.Formats.Nrbf is experimental in .NET 9
31+
// System.Formats.Nrbf is experimental
3232
internal const string NrbfDecoderDiagId = "SYSLIB5005";
3333

3434
// When adding a new diagnostic ID, add it to the table in docs\project\list-of-diagnostics.md as well.

0 commit comments

Comments
 (0)