Skip to content

Commit 9a7ca13

Browse files
[file_selector] Fix comment typo (#6027)
Replaces "pltaform" with "platform" in each instance.
1 parent 450251a commit 9a7ca13

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

packages/file_selector/file_selector/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
## NEXT
1+
## 1.0.3
22

3+
* Fixes a typo in documentation comments.
34
* Updates support matrix in README to indicate that iOS 11 is no longer supported.
45
* Clients on versions of Flutter that still support iOS 11 can continue to use this
56
package with iOS 11, but will not receive any further updates to the iOS implementation.

packages/file_selector/file_selector/lib/file_selector.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export 'package:file_selector_platform_interface/file_selector_platform_interfac
1212
/// Opens a file selection dialog and returns the path chosen by the user.
1313
///
1414
/// [acceptedTypeGroups] is a list of file type groups that can be selected in
15-
/// the dialog. How this is displayed depends on the pltaform, for example:
15+
/// the dialog. How this is displayed depends on the platform, for example:
1616
/// - On Windows and Linux, each group will be an entry in a list of filter
1717
/// options.
1818
/// - On macOS, the union of all types allowed by all of the groups will be
@@ -44,7 +44,7 @@ Future<XFile?> openFile({
4444
/// user.
4545
///
4646
/// [acceptedTypeGroups] is a list of file type groups that can be selected in
47-
/// the dialog. How this is displayed depends on the pltaform, for example:
47+
/// the dialog. How this is displayed depends on the platform, for example:
4848
/// - On Windows and Linux, each group will be an entry in a list of filter
4949
/// options.
5050
/// - On macOS, the union of all types allowed by all of the groups will be
@@ -74,7 +74,7 @@ Future<List<XFile>> openFiles({
7474
/// Opens a save dialog and returns the target path chosen by the user.
7575
///
7676
/// [acceptedTypeGroups] is a list of file type groups that can be selected in
77-
/// the dialog. How this is displayed depends on the pltaform, for example:
77+
/// the dialog. How this is displayed depends on the platform, for example:
7878
/// - On Windows and Linux, each group will be an entry in a list of filter
7979
/// options.
8080
/// - On macOS, the union of all types allowed by all of the groups will be

packages/file_selector/file_selector/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for opening and saving files, or selecting
33
directories, using native file selection UI.
44
repository: https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
6-
version: 1.0.2
6+
version: 1.0.3
77

88
environment:
99
sdk: ">=3.0.0 <4.0.0"

0 commit comments

Comments
 (0)