From 12c8ff0758ba863e987f0f2d5df53ada207a97e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20=C3=87A=C4=9EDA=C5=9E?= Date: Fri, 6 Nov 2020 16:07:25 +0300 Subject: [PATCH] fix typo --- .../Volo/Abp/Cli/Bundling/BundlingService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlingService.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlingService.cs index 30f8f333c1..001e33c5df 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlingService.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Bundling/BundlingService.cs @@ -54,10 +54,10 @@ namespace Volo.Abp.Cli.Bundling var styleContext = GetStyleContext(bundleDefinitions); var scriptContext = GetScriptContext(bundleDefinitions); - var styleDefinitons = GenerateStyleDefinitions(styleContext); + var styleDefinitions = GenerateStyleDefinitions(styleContext); var scriptDefinitions = GenerateScriptDefinitions(scriptContext); - await UpdateDependenciesInHtmlFileAsync(directory, styleDefinitons, scriptDefinitions); + await UpdateDependenciesInHtmlFileAsync(directory, styleDefinitions, scriptDefinitions); } private BundleContext GetScriptContext(List bundleDefinitions)