Skip to content

Commit 40c890a

Browse files
committed
update
1 parent 6c955c9 commit 40c890a

5 files changed

+7
-7
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-gin-web-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ Now that you've set up dynamic configuration refresh, let's test it to see it in
123123
1. Run the application.
124124

125125
```bash
126-
go mod tidy
127-
go run .
126+
go mod tidy
127+
go run .
128128
```
129129

130130
2. Open a web browser and navigate to `http://localhost:8080` to access your application. The web page looks like this:

articles/azure-app-configuration/enable-dynamic-configuration-go-console-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ In this quickstart, you'll enhance a basic Go console application to dynamically
100100
1. Run your application:
101101

102102
```bash
103-
go mod tidy
104-
go run .
103+
go mod tidy
104+
go run .
105105
```
106106

107107
2. Keep the application running.

articles/azure-app-configuration/quickstart-feature-flag-go-console.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
165165

166166
```console
167167
go mod tidy
168-
go run main.go
168+
go run .
169169
```
170170
---
171171

articles/azure-app-configuration/quickstart-feature-flag-go-gin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ Add a feature flag called *Beta* to the App Configuration store and leave **Labe
243243
betaEnabled := c.GetBool("betaEnabled")
244244

245245
c.HTML(http.StatusOK, "index.html", gin.H{
246-
"title": "Feature Management Demo",
246+
"title": "Feature Management Example App",
247247
"betaEnabled": betaEnabled,
248248
})
249249
}

articles/azure-app-configuration/quickstart-go-console-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ Update `main.go` with the following content:
311311
2. After the environment variable is properly set, run the following command to run the *Unmarshal* and *GetBytes* example:
312312
313313
```bash
314-
go mod tidy
314+
go mod tidy
315315
go run .
316316
```
317317

0 commit comments

Comments
 (0)