Skip to content

Commit

Permalink
Added missing commas (#18823)
Browse files Browse the repository at this point in the history
Added missing commas
  • Loading branch information
cmendible authored Aug 31, 2022
1 parent 661e008 commit dffff5e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sdk/data/azappconfig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func ExampleGetConfigurationSetting() {
context.TODO(),
"key",
&azappconfig.GetSettingOptions{
Label: to.Ptr("label")
Label: to.Ptr("label"),
})
if err != nil {
Expand Down Expand Up @@ -218,7 +218,7 @@ func ExampleSetConfigurationSettingReadOnly() {
"key",
true,
&azappconfig.SetReadOnlyOptions{
Label: to.Ptr("label")
Label: to.Ptr("label"),
})
if err != nil {
Expand All @@ -236,7 +236,7 @@ func ExampleSetConfigurationSettingReadOnly() {
"key",
false,
&azappconfig.SetReadOnlyOptions{
Label: to.Ptr("label")
Label: to.Ptr("label"),
})
if err != nil {
Expand Down Expand Up @@ -272,7 +272,7 @@ func ExampleListRevisions() {
azappconfig.SettingSelector{
KeyFilter: to.Ptr("*"),
LabelFilter: to.Ptr("*"),
Fields: azappconfig.AllSettingFields()
Fields: azappconfig.AllSettingFields(),
},
nil)
Expand Down Expand Up @@ -312,7 +312,7 @@ func ExampleDeleteConfigurationSetting() {
context.TODO(),
"key",
&azappconfig.DeleteSettingOptions{
Label: to.Ptr("label")
Label: to.Ptr("label"),
})
if err != nil {
Expand Down

0 comments on commit dffff5e

Please sign in to comment.