From 620a7ee0c46a2d85c5a06f186d408eb4b44873b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D0=BA=D1=81=D0=B8=D0=BC?= Date: Thu, 25 Nov 2021 14:58:32 +0600 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9aaeb3b..588821a 100644 --- a/README.md +++ b/README.md @@ -454,8 +454,8 @@ if (userRole == "Admin") **Good** ```csharp -const string ADMIN_ROLE = "Admin" -if (userRole == ADMIN_ROLE) +const string AdminRole = "Admin" +if (userRole == AdminRole) { // logic in here }