diff --git a/API/Startup.cs b/API/Startup.cs
index 6e92fca..742c42f 100644
--- a/API/Startup.cs
+++ b/API/Startup.cs
@@ -1,5 +1,5 @@
using Core.Interfaces;
-using Infrastucture.Data;
+using Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.OpenApi.Models;
diff --git a/E-Commerce.sln b/E-Commerce.sln
index 0f46fa7..71daa2b 100644
--- a/E-Commerce.sln
+++ b/E-Commerce.sln
@@ -7,7 +7,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "API", "API\API.csproj", "{B
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "Core\Core.csproj", "{124DD725-C323-44B3-B490-0D3613FE6AFB}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastucture", "Infrastructure\Infrastucture.csproj", "{4DDBA348-67D9-4797-9A0F-355220BC9B19}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure", "Infrastructure\Infrastructure.csproj", "{4DDBA348-67D9-4797-9A0F-355220BC9B19}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
diff --git a/Infrastructure/Data/Migrations/20220509234932_InitialCreate.Designer.cs b/Infrastructure/Data/Migrations/20220509234932_InitialCreate.Designer.cs
index a6366e9..266fe1b 100644
--- a/Infrastructure/Data/Migrations/20220509234932_InitialCreate.Designer.cs
+++ b/Infrastructure/Data/Migrations/20220509234932_InitialCreate.Designer.cs
@@ -1,5 +1,5 @@
//
-using Infrastucture.Data;
+using Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
diff --git a/Infrastructure/Data/Migrations/StoreContextModelSnapshot.cs b/Infrastructure/Data/Migrations/StoreContextModelSnapshot.cs
index f63ab94..3746a35 100644
--- a/Infrastructure/Data/Migrations/StoreContextModelSnapshot.cs
+++ b/Infrastructure/Data/Migrations/StoreContextModelSnapshot.cs
@@ -1,5 +1,5 @@
//
-using Infrastucture.Data;
+using Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
diff --git a/Infrastructure/Data/ProductRepository.cs b/Infrastructure/Data/ProductRepository.cs
index 027c143..cf7b2f1 100644
--- a/Infrastructure/Data/ProductRepository.cs
+++ b/Infrastructure/Data/ProductRepository.cs
@@ -2,7 +2,7 @@ using Core.Entities;
using Core.Interfaces;
using Microsoft.EntityFrameworkCore;
-namespace Infrastucture.Data
+namespace Infrastructure.Data
{
public class ProductRepository : iProductRepository
{
diff --git a/Infrastructure/Data/StoreContext.cs b/Infrastructure/Data/StoreContext.cs
index 31080c9..bc801c5 100644
--- a/Infrastructure/Data/StoreContext.cs
+++ b/Infrastructure/Data/StoreContext.cs
@@ -1,7 +1,7 @@
using Core.Entities;
using Microsoft.EntityFrameworkCore;
-namespace Infrastucture.Data
+namespace Infrastructure.Data
{
public class StoreContext : DbContext
{