diff --git a/vs/LO23/Shared/Shared.csproj b/vs/LO23/Shared/Shared.csproj
index 1c3da9824c8c10e5c12f9a70456a11e1231a9a54..9288628273033a67baf621c3fdabc6a54cfcf9be 100644
--- a/vs/LO23/Shared/Shared.csproj
+++ b/vs/LO23/Shared/Shared.csproj
@@ -45,7 +45,7 @@
     <Compile Include="data\LightGame.cs" />
     <Compile Include="data\Round.cs" />
     <Compile Include="data\GameAction.cs" />
-    <Compile Include="data\LigthUser.cs" />
+    <Compile Include="data\LightUser.cs" />
     <Compile Include="data\Phase.cs" />
     <Compile Include="data\Card.cs" />
     <Compile Include="data\ChatMessage.cs" />
diff --git a/vs/LO23/Shared/data/LigthUser.cs b/vs/LO23/Shared/data/LightUser.cs
similarity index 86%
rename from vs/LO23/Shared/data/LigthUser.cs
rename to vs/LO23/Shared/data/LightUser.cs
index bb3a44f80a0d1a2a83dc48556030773d6dd3b5ea..ee3a17219c6f7f1a9aee4f7f76c4a559117cc199 100644
--- a/vs/LO23/Shared/data/LigthUser.cs
+++ b/vs/LO23/Shared/data/LightUser.cs
@@ -7,14 +7,14 @@ using System.Threading.Tasks;
 namespace Shared.data
 {
 
-    public class LigthUser
+    public class LightUser
 
     {
         public int id;
         public string userName;// userName et login c'est la même chose 
         public string image;
 
-        public LigthUser(int idt = 1, string userNamet = "usernametest", string imaget = "imagetest")
+        public LightUser(int idt = 1, string userNamet = "usernametest", string imaget = "imagetest")
         {
             if (idt == 1) { id = idt; }
             else
diff --git a/vs/LO23/Shared/data/User.cs b/vs/LO23/Shared/data/User.cs
index aeb1517cc2050d9cdd594d0f4011eb9877bd220f..88ed88fdedefb3e502ce6d302784cbfbc9428806 100644
--- a/vs/LO23/Shared/data/User.cs
+++ b/vs/LO23/Shared/data/User.cs
@@ -7,7 +7,7 @@ using Shared.data;
 
 namespace Shared.data {
 
-    public class User : LigthUser
+    public class User : LightUser
     {
         public string password;