Skip to content

Commit

Permalink
fix: fix typo in AndroidConfig docstring (#12003)
Browse files Browse the repository at this point in the history
  • Loading branch information
leekeh authored Dec 29, 2024
1 parent c870065 commit ed118da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/tauri-cli/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-schema-generator/schemas/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-utils/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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))]
Expand Down

0 comments on commit ed118da

Please sign in to comment.