Skip to content

Commit dffff5e

Browse files
authored
Added missing commas (Azure#18823)
Added missing commas
1 parent 661e008 commit dffff5e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sdk/data/azappconfig/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func ExampleGetConfigurationSetting() {
144144
context.TODO(),
145145
"key",
146146
&azappconfig.GetSettingOptions{
147-
Label: to.Ptr("label")
147+
Label: to.Ptr("label"),
148148
})
149149

150150
if err != nil {
@@ -218,7 +218,7 @@ func ExampleSetConfigurationSettingReadOnly() {
218218
"key",
219219
true,
220220
&azappconfig.SetReadOnlyOptions{
221-
Label: to.Ptr("label")
221+
Label: to.Ptr("label"),
222222
})
223223

224224
if err != nil {
@@ -236,7 +236,7 @@ func ExampleSetConfigurationSettingReadOnly() {
236236
"key",
237237
false,
238238
&azappconfig.SetReadOnlyOptions{
239-
Label: to.Ptr("label")
239+
Label: to.Ptr("label"),
240240
})
241241

242242
if err != nil {
@@ -272,7 +272,7 @@ func ExampleListRevisions() {
272272
azappconfig.SettingSelector{
273273
KeyFilter: to.Ptr("*"),
274274
LabelFilter: to.Ptr("*"),
275-
Fields: azappconfig.AllSettingFields()
275+
Fields: azappconfig.AllSettingFields(),
276276
},
277277
nil)
278278

@@ -312,7 +312,7 @@ func ExampleDeleteConfigurationSetting() {
312312
context.TODO(),
313313
"key",
314314
&azappconfig.DeleteSettingOptions{
315-
Label: to.Ptr("label")
315+
Label: to.Ptr("label"),
316316
})
317317

318318
if err != nil {

0 commit comments

Comments
 (0)