Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/core/extensions/data-redaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Include this section in your JSON config file:
- Different key IDs mean the values are unrelated and can't be used for correlation.

> [!NOTE]
> The <xref:Microsoft.Extensions.Compliance.Redaction.HmacRedactor> is still experimental, so the preceding methods will cause the `EXTEXP0002` warningm indicating it's not yet stable.
> The <xref:Microsoft.Extensions.Compliance.Redaction.HmacRedactor> is still experimental, so the preceding methods will cause the `EXTEXP0002` warning indicating it's not yet stable.
> To use it, add `<NoWarn>$(NoWarn);EXTEXP0002</NoWarn>` to your project file or add `#pragma warning disable EXTEXP0002` around the calls to `SetHmacRedactor`.

### Configure a custom redactor
Expand All @@ -150,8 +150,6 @@ To create a custom redactor, define a subclass that inherits from <xref:Microsof

```csharp
public sealed class StarRedactor : Redactor

public class StarRedactor : Redactor
{
private const string Stars = "****";

Expand Down
Loading