docs(): correct loading usage in BREAKING.md (#19136)

`content` does not exist in `LoadingOptions`. It's now called `message`.
This commit is contained in:
Domvel
2019-08-20 16:06:17 +02:00
committed by Liam DeBeasi
parent 5a2c441b3c
commit cbd230c67e

View File

@@ -1092,7 +1092,7 @@ openLoading() {
```javascript
async openLoading() {
let loading = this.loadingCtrl.create({
content: 'Loading...'
message: 'Loading...'
});
await loading.present();