From 0a0b4b0f06e8d11e9c16341b18095802a3c86fb1 Mon Sep 17 00:00:00 2001 From: afresh Date: Fri, 10 Jun 2022 15:54:03 +0800 Subject: [PATCH] Fix Identity.md --- docs/en/Modules/Identity.md | 4 ++-- docs/zh-Hans/Modules/Identity.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/Modules/Identity.md b/docs/en/Modules/Identity.md index c06f649723..4cd8bef316 100644 --- a/docs/en/Modules/Identity.md +++ b/docs/en/Modules/Identity.md @@ -105,8 +105,8 @@ You can inject and use `IdentitySecurityLogManager` or `ISecurityLogManager` to ```cs await IdentitySecurityLogManager.SaveAsync(new IdentitySecurityLogContext() { - Identity = "IdentityServer"; - Action = "ChangePassword"; + Identity = "IdentityServer", + Action = "ChangePassword" }); ``` diff --git a/docs/zh-Hans/Modules/Identity.md b/docs/zh-Hans/Modules/Identity.md index bf715bc7b6..d6a71f8b21 100644 --- a/docs/zh-Hans/Modules/Identity.md +++ b/docs/zh-Hans/Modules/Identity.md @@ -105,8 +105,8 @@ ```cs await IdentitySecurityLogManager.SaveAsync(new IdentitySecurityLogContext() { - Identity = "IdentityServer"; - Action = "ChangePassword"; + Identity = "IdentityServer", + Action = "ChangePassword" }); ```