diff --git a/static/usage/v7/alert/presenting/controller/angular/example_component_ts.md b/static/usage/v7/alert/presenting/controller/angular/example_component_ts.md index 32583600432..6fdd69c7f69 100644 --- a/static/usage/v7/alert/presenting/controller/angular/example_component_ts.md +++ b/static/usage/v7/alert/presenting/controller/angular/example_component_ts.md @@ -11,10 +11,10 @@ export class ExampleComponent { async presentAlert() { const alert = await this.alertController.create({ - header: 'Alert', - subHeader: 'Important message', - message: 'This is an alert!', - buttons: ['OK'], + header: 'A Short Title Is Best', + subHeader: 'A Sub Header Is Optional', + message: 'A message should be a short, complete sentence.', + buttons: ['Action'], }); await alert.present(); diff --git a/static/usage/v7/alert/presenting/controller/demo.html b/static/usage/v7/alert/presenting/controller/demo.html index 62efcb2413c..d4e86b7fb77 100644 --- a/static/usage/v7/alert/presenting/controller/demo.html +++ b/static/usage/v7/alert/presenting/controller/demo.html @@ -22,10 +22,10 @@ diff --git a/static/usage/v7/alert/presenting/trigger/javascript.md b/static/usage/v7/alert/presenting/trigger/javascript.md index 82d43db4267..9496421db5b 100644 --- a/static/usage/v7/alert/presenting/trigger/javascript.md +++ b/static/usage/v7/alert/presenting/trigger/javascript.md @@ -2,13 +2,13 @@ Click Me ``` diff --git a/static/usage/v7/alert/presenting/trigger/react.md b/static/usage/v7/alert/presenting/trigger/react.md index d096665527b..4d10a5ad085 100644 --- a/static/usage/v7/alert/presenting/trigger/react.md +++ b/static/usage/v7/alert/presenting/trigger/react.md @@ -8,10 +8,10 @@ function Example() { Click Me ); diff --git a/static/usage/v7/alert/presenting/trigger/vue.md b/static/usage/v7/alert/presenting/trigger/vue.md index f645a91fe1e..344797317dc 100644 --- a/static/usage/v7/alert/presenting/trigger/vue.md +++ b/static/usage/v7/alert/presenting/trigger/vue.md @@ -3,9 +3,9 @@ Click Me @@ -13,6 +13,6 @@ ```