Skip to content

Commit ff4917e

Browse files
authored
typo: (#35105)
1 parent 65d2bbd commit ff4917e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

aspnetcore/fundamentals/dependency-injection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ The debug console shows the following output after each refresh of the Index pag
252252
```console
253253
Service1: IndexModel.OnGet
254254
Service2: IndexModel.OnGet
255-
Service3: IndexModel.OnGet, MyKey = MyKey from appsettings.Developement.json
255+
Service3: IndexModel.OnGet, MyKey = MyKey from appsettings.Development.json
256256
Service1.Dispose
257257
```
258258

aspnetcore/fundamentals/dependency-injection/includes/dependency-injection-5-7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ The debug console shows the following output after each refresh of the Index pag
228228
```console
229229
Service1: IndexModel.OnGet
230230
Service2: IndexModel.OnGet
231-
Service3: IndexModel.OnGet, MyKey = MyKey from appsettings.Developement.json
231+
Service3: IndexModel.OnGet, MyKey = MyKey from appsettings.Development.json
232232
Service1.Dispose
233233
```
234234

aspnetcore/fundamentals/dependency-injection/includes/dependency-injection-8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ The debug console shows the following output after each refresh of the Index pag
234234
```console
235235
Service1: IndexModel.OnGet
236236
Service2: IndexModel.OnGet
237-
Service3: IndexModel.OnGet, MyKey = MyKey from appsettings.Developement.json
237+
Service3: IndexModel.OnGet, MyKey = MyKey from appsettings.Development.json
238238
Service1.Dispose
239239
```
240240

aspnetcore/fundamentals/dependency-injection/samples/3.x/DependencyInjectionSample/appsettings.Development.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"MyKey": "MyKey from appsettings.Developement.json",
2+
"MyKey": "MyKey from appsettings.Development.json",
33
"Logging": {
44
"LogLevel": {
55
"Default": "Information",

aspnetcore/fundamentals/dependency-injection/samples/6.x/DIsample2/DIsample2/appsettings.Development.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"DetailedErrors": true,
3-
"MyKey": "MyKey from appsettings.Developement.json",
3+
"MyKey": "MyKey from appsettings.Development.json",
44
"Logging": {
55
"LogLevel": {
66
"Default": "Information",

0 commit comments

Comments
 (0)