Skip to content

Commit 6d5bdb0

Browse files
authored
Fix minor typo in ASP.NET Core tutorials (#1293)
* Fix minor typo in tutorials/aspnetcore.md * Fix typo in reactnet-vanilla/Startup.cs
1 parent 3c02e85 commit 6d5bdb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/jekyll/tutorials/aspnetcore.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ app.UseReact(config =>
149149
// .AddScript("~/js/First.jsx")
150150
// .AddScript("~/js/Second.jsx");
151151
152-
// If you use an external build too (for example, Babel, Webpack,
152+
// If you use an external build tool (for example, Babel, Webpack,
153153
// Browserify or Gulp), you can improve performance by disabling
154154
// ReactJS.NET's version of Babel and loading the pre-transpiled
155155
// scripts. Example:

src/React.Template/reactnet-vanilla/Startup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env, ILoggerF
7272
ContractResolver = new CamelCasePropertyNamesContractResolver()
7373
});
7474

75-
// If you use an external build too (for example, Babel, Webpack,
75+
// If you use an external build tool (for example, Babel, Webpack,
7676
// Browserify or Gulp), you can improve performance by disabling
7777
// ReactJS.NET's version of Babel and loading the pre-transpiled
7878
// scripts. Example:

0 commit comments

Comments
 (0)