fix: fix typo in AndroidConfig docstring (#12003)

This commit is contained in:
Lieke 2024-12-30 00:25:29 +01:00 committed by GitHub
parent c8700656be
commit ed118da266
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -3421,7 +3421,7 @@
"additionalProperties": false
},
"AndroidConfig": {
"description": "General configuration for the iOS target.",
"description": "General configuration for the Android target.",
"type": "object",
"properties": {
"minSdkVersion": {

View File

@ -3421,7 +3421,7 @@
"additionalProperties": false
},
"AndroidConfig": {
"description": "General configuration for the iOS target.",
"description": "General configuration for the Android target.",
"type": "object",
"properties": {
"minSdkVersion": {

View File

@ -2491,7 +2491,7 @@ impl Default for IosConfig {
}
}
/// General configuration for the iOS target.
/// General configuration for the Android target.
#[skip_serializing_none]
#[derive(Debug, PartialEq, Eq, Clone, Deserialize, Serialize)]
#[cfg_attr(feature = "schema", derive(JsonSchema))]