From 5cc9fe954fca55bc16939e77b32fd6dcb4f0cc64 Mon Sep 17 00:00:00 2001 From: hippy Date: Mon, 11 Feb 2019 12:46:16 -0800 Subject: [PATCH] readme: Fix 'LogMasked' example LogMasked example incorrectly shows "123456789" masked to "*********" which is incorrect. It should be "***" So fix it. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8369afb..d80ffa4 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Apply the `LogMasked` attribute with various settings: public class Creditcard { /// - /// 123456789 results in "*********" + /// 123456789 results in "***" /// [LogMasked] public string DefaultMasked { get; set; }