fix: correct isDownloadable docs to match impl (#18720)

This commit is contained in:
Shelley Vohr 2019-06-12 10:54:14 -07:00 committed by GitHub
parent 5317211b0b
commit 292a240e1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 6 deletions

View file

@ -61,7 +61,7 @@ struct Converter<in_app_purchase::Product> {
dict.Set("formattedPrice", val.formattedPrice);
// Downloadable Content Information
dict.Set("isDownloadable", val.downloadable);
dict.Set("isDownloadable", val.isDownloadable);
return dict.GetHandle();
}