Skip to content

Commit b763983

Browse files
jsorefHixie
authored andcommitted
Spelling (flutter#411)
* spelling: aggregate * spelling: android * spelling: appveyor * spelling: constructs * spelling: error * spelling: invocable * spelling: limitations * spelling: maximum * spelling: programmatically * spelling: suppress * spelling: wifi * spelling: windows
1 parent 0175a2a commit b763983

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ To send us a pull request:
7575
Please make sure all your checkins have detailed commit messages explaining the patch.
7676

7777
Once you've gotten an LGTM from a project maintainer and once your PR has received
78-
the green light from all our automated testing (Travis, Appveyor, etc), submit your
78+
the green light from all our automated testing (Travis, AppVeyor, etc), submit your
7979
changes to the `master` branch using one of the following methods:
8080

8181
* Wait for one of the project maintainers to submit it for you.

packages/cloud_firestore/android/src/main/java/io/flutter/plugins/firebase/cloudfirestore/CloudFirestorePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ public void success(Object doTransactionResult) {
260260
@Override
261261
public void error(
262262
String errorCode, String errorMessage, Object errorDetails) {
263-
// result.error(errorCode, errorMessage, errroDetails);
263+
// result.error(errorCode, errorMessage, errorDetails);
264264
transactionTCS.setException(new Exception("Do transaction failed."));
265265
}
266266

packages/connectivity/lib/connectivity.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'package:flutter/services.dart';
88

99
/// Connection Status Check Result
1010
///
11-
/// Wifi: Device connected via Wi-Fi
11+
/// WiFi: Device connected via Wi-Fi
1212
/// Mobile: Device connected to cellular network
1313
/// None: Device not connected to any network
1414
enum ConnectivityResult { wifi, mobile, none }

packages/firebase_admob/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ myBanner
5252

5353
`BannerAd` and `InterstitialAd` objects can be disposed to free up plugin
5454
resources. Disposing a banner ad that's been shown removes it from the screen.
55-
Interstitial ads, however, can't be programatically removed from view.
55+
Interstitial ads, however, can't be programmatically removed from view.
5656

5757
Banner and interstitial ads can be created with a `MobileAdEvent` listener. The
5858
listener can be used to detect when the ad has actually finished loading
@@ -98,7 +98,7 @@ method.
9898
## Limitations
9999

100100
This is just an initial version of the plugin. There are still some
101-
limitiations:
101+
limitations:
102102

103103
- Banner ads have limited positioning functionality. They can be positioned at the top or the bottom of the screen and at a logical pixel offset from the edge.
104104
- Banner ads cannot be animated into view.

packages/firebase_analytics/lib/observer.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'firebase_analytics.dart';
1010
/// Signature for a function that extracts a screen name from [RouteSettings].
1111
///
1212
/// Usually, the route name is not a plain string, and it may contains some
13-
/// unique ids that makes it difficult to agregate over them in Firebase
13+
/// unique ids that makes it difficult to aggregate over them in Firebase
1414
/// Analytics.
1515
typedef String ScreenNameExtractor(RouteSettings settings);
1616

packages/google_sign_in/android/src/main/java/io/flutter/plugins/googlesignin/GoogleSignInPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public interface IDelegate {
145145
*
146146
* <p>All methods in this class assume that they are run to completion before any other method is
147147
* invoked. In this context, "run to completion" means that their {@link Result} argument has been
148-
* completed (either successfully or in error). This class provides no synchronization consructs
148+
* completed (either successfully or in error). This class provides no synchronization constructs
149149
* to guarantee such behavior; callers are responsible for providing such guarantees.
150150
*/
151151
public static final class Delegate implements IDelegate {

packages/local_auth/android/src/main/java/io/flutter/plugins/localauth/AuthenticationHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ private void updateFingerprintDialog(DialogState state, String message) {
216216
resultInfo.setText(message);
217217
}
218218

219-
// Supress inflateParams lint because dialogs do not need to attach to a parent view.
219+
// Suppress inflateParams lint because dialogs do not need to attach to a parent view.
220220
@SuppressLint("InflateParams")
221221
private void showFingerprintDialog() {
222222
View view = LayoutInflater.from(activity).inflate(R.layout.scan_fp, null, false);
@@ -242,7 +242,7 @@ public void onClick(DialogInterface dialog, int which) {
242242
.show();
243243
}
244244

245-
// Supress inflateParams lint because dialogs do not need to attach to a parent view.
245+
// Suppress inflateParams lint because dialogs do not need to attach to a parent view.
246246
@SuppressLint("InflateParams")
247247
private void showGoToSettingsDialog() {
248248
View view = LayoutInflater.from(activity).inflate(R.layout.go_to_setting, null, false);

packages/local_auth/lib/auth_strings.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ String get androidFingerprintSuccess => Intl.message('Fingerprint recognized.',
8989

9090
String get androidCancelButton => Intl.message('Cancel',
9191
desc: 'Message showed on a button that the user can click to leave the '
92-
'current dialog. It is used on Andorid side. Maxium 30 characters.');
92+
'current dialog. It is used on Android side. Maximum 30 characters.');
9393

9494
String get androidSignInTitle => Intl.message('Fingerprint Authentication',
9595
desc: 'Message showed as a title in a dialog which indicates the user '

packages/quick_actions/android/src/main/java/io/flutter/plugins/quickactions/QuickActionsPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ private List<ShortcutInfo> deserializeShortcuts(List<Map<String, String>> shortc
104104
/**
105105
* Handle the shortcut and immediately closes the activity.
106106
*
107-
* <p>Needs to be invokable by Android system; hence it is public.
107+
* <p>Needs to be invocable by Android system; hence it is public.
108108
*/
109109
public static class ShortcutHandlerActivity extends Activity {
110110

0 commit comments

Comments
 (0)