Skip to content

Commit c5491f4

Browse files
authored
#1231 Fix typos across the codebase
2 parents 5fdf97e + 6cc446f commit c5491f4

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Style/RedundantReturn:
173173
Style/IfUnlessModifier:
174174
Enabled: false
175175

176-
# and and or is okay
176+
# "and" and "or" are okay
177177
Style/AndOr:
178178
Enabled: true
179179
EnforcedStyle: conditionals

docs/advanced/actions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ name = UI.input("What's your name? ")
7777
if UI.confirm("Are you '#{name}'?")
7878
UI.success "Oh yeah"
7979
else
80-
UI.error "Wups, invalid"
80+
UI.error "Whoops, invalid"
8181
end
8282

8383
UI.password("Your password please: ") # password inputs are hidden

docs/advanced/lanes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ app_identifier "com.used.id"
268268
app_identifier "com.ignored.id"
269269
```
270270

271-
the `app_identfier` will be `"com.used.id"` and the second value will be ignored. The `for_lane` and `for_platform` configuration blocks provide a limited exception to this rule.
271+
the `app_identifier` will be `"com.used.id"` and the second value will be ignored. The `for_lane` and `for_platform` configuration blocks provide a limited exception to this rule.
272272

273273
All configuration files (Appfile, Matchfile, Screengrabfile, etc.) can use `for_lane` and `for_platform` blocks to control (and override) configuration values for those circumstances.
274274

docs/app-store-connect-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ $ bundle exec fastlane match appstore \
106106
```
107107

108108
Please note that `key_content` and `key_filepath` described in `app_store_connect_api_key` action are invalid both in hash and in JSON file.
109-
View [Token code on Github](https://github.com/fastlane/fastlane/blob/master/spaceship/lib/spaceship/connect_api/token.rb)
109+
View [Token code on GitHub](https://github.com/fastlane/fastlane/blob/master/spaceship/lib/spaceship/connect_api/token.rb)
110110

111111
### Using _fastlane_ API Key JSON file
112112

docs/best-practices/continuous-integration/bamboo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Then you could use the following regex to ignore these commits
1919

2020

2121
## Setting repository remote
22-
By default bamboo will do an anonymous shallow clone of the repo. This will not preserve the `git remote` information nor the list of tags. If you are using bamboo to create commits you may want to use a code block similar to the following:
22+
Bamboo will do an anonymous shallow clone of the repo by default. This will preserve neither the `git remote` information nor the list of tags. If you are using bamboo to create commits you may want to use a code block similar to the following:
2323

2424

2525
```ruby

docs/best-practices/continuous-integration/codemagic.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The following **environment variables** need to be added to your workflow for *f
1212

1313
- `MATCH_PASSWORD` - the password used to encrypt/decrypt the repository used to store your distribution certificates and provisioning profiles.
1414
- `MATCH_KEYCHAIN` - an arbitrary name to use for the keychain on the Codemagic build server, e.g "fastlane_keychain"
15-
- `MATCH_SSH_KEY` - an SSH private key used for cloning the Match repository that contains your distribution certificates and provisioning profiles. The public key should be added to your Github account. See [here](https://docs.codemagic.io/configuration/access-private-git-submodules/) for more information about accessing Git dependencies with SSH keys.
15+
- `MATCH_SSH_KEY` - an SSH private key used for cloning the Match repository that contains your distribution certificates and provisioning profiles. The public key should be added to your GitHub account. See [here](https://docs.codemagic.io/configuration/access-private-git-submodules/) for more information about accessing Git dependencies with SSH keys.
1616
- `APP_STORE_CONNECT_PRIVATE_KEY` - the App Store Connect API key. Copy the entire contents of the .p8 file and paste into the environment variable value field.
1717
- `APP_STORE_CONNECT_KEY_IDENTIFIER` - the key identifier of your App Store Connect API key.
1818
- `APP_STORE_CONNECT_ISSUER_ID` - the issuer of your App Store Connect API key.
@@ -33,7 +33,7 @@ workflows:
3333
3434
It is recommended to run your *fastlane* lanes using the `codemagic.yaml` configuration file.
3535

36-
You should install your depenpendencies with `bundle install` and then execute the *fastlane* lane with `bundle exec fastlane <lane_name>` as follows:
36+
You should install your dependencies with `bundle install` and then execute the *fastlane* lane with `bundle exec fastlane <lane_name>` as follows:
3737

3838
```yaml
3939
scripts:

docs/best-practices/continuous-integration/jenkins.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ Under the hood `setup_jenkins` configures other actions like: _gym_, _scan_, `xc
5454

5555
You can use `commit_version_bump` or `git_commit` action to commit changes to your repository in your fastlane setup. When you are using webhooks to trigger your build on a push this will cause an infinite loop of triggering builds.
5656

57-
#### Gitlab
57+
#### GitLab
5858

59-
When you are using Gitlab you will need the [GitLab Plugin](https://plugins.jenkins.io/gitlab-plugin). Inside the job you want to configure you go to `Build Triggers > Build when a change is pushed to GitLab > Enable [ci-skip]`.
59+
When you are using GitLab you will need the [GitLab Plugin](https://plugins.jenkins.io/gitlab-plugin). Inside the job you want to configure you go to `Build Triggers > Build when a change is pushed to GitLab > Enable [ci-skip]`.
6060
When you include `[ci-skip]` in your build this commit won't trigger the build in jenkins at all.
6161

6262
**Example**

docs/best-practices/xcodebuild-formatters.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ scan(
3131
xcodebuild_formatter: "/custom/path/to/xcbeautify"
3232
)
3333

34-
# Specifify your own custom formatter
34+
# Specify your own custom formatter
3535
scan(
3636
xcodebuild_formatter: "/custom/path/to/my_formatter"
3737
)
@@ -64,7 +64,7 @@ $ brew install xcbeautify
6464

6565
#### xcpretty
6666

67-
Historticaly, _fastlane_ was tightly integrated with [xcpretty](https://github.com/xcpretty/xcpretty). `xcpretty` is a RubyGem and a dependency of _fastlane_. This was the best option for _fastlane_ as there were no extra steps for installing or using this formatter.
67+
Historically, _fastlane_ was tightly integrated with [xcpretty](https://github.com/xcpretty/xcpretty). `xcpretty` is a RubyGem and a dependency of _fastlane_. This was the best option for _fastlane_ as there were no extra steps for installing or using this formatter.
6868

6969
`xcpretty` also did more than formatting. It used the `xcodebuild` output to:
7070

docs/getting-started/android/screenshots.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public class ExampleInstrumentedTest {
9292
}
9393

9494
```
95-
There is an [example project](https://github.com/fastlane/fastlane/tree/master/screengrab/example/src/androidTest/java/tools/fastlane/localetester) showing how to use use JUnit 3 or 4 and Espresso with the screengrab Java library to capture screenshots during a UI test run.
95+
There is an [example project](https://github.com/fastlane/fastlane/tree/master/screengrab/example/src/androidTest/java/tools/fastlane/localetester) showing how to use JUnit 3 or 4 and Espresso with the screengrab Java library to capture screenshots during a UI test run.
9696

9797
Using JUnit 4 is preferable because of its ability to perform actions before and after the entire test class is run. This means you will change the device's locale far fewer times when compared with JUnit 3 running those commands before and after each test method.
9898

docs/getting-started/ios/setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The most interesting file is `fastlane/Fastfile`, which contains all the informa
4040

4141
### What's next?
4242

43-
_fastlane_ created all the required files for you. Now you can go ahead and customise _fastlane_ to generate screenshots, or automatically distribute new builds, and much, much more. Here're some examples:
43+
_fastlane_ created all the required files for you. Now you can go ahead and customise _fastlane_ to generate screenshots, or automatically distribute new builds, and much, much more. Here are some examples:
4444

4545
- [Generate localized iOS screenshots for the App Store](screenshots.md)
4646
- [Automatic iOS Beta deployment](beta-deployment.md)

docs/includes/google-credentials.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
1. If you don't have an existing project or prefer to have a dedicated one for _fastlane_, [create a new one here](https://console.cloud.google.com/projectcreate/?hl=en) and follow the instructions
99
1. Open [Service Accounts on Google Cloud](https://console.cloud.google.com/iam-admin/serviceaccounts?hl=en) and select the project you'd like to use
1010
1. Click the **CREATE SERVICE ACCOUNT** button at the top of the **Google Cloud Platform Console** page
11-
1. Verify that you are on the correct Google Cloud Platform Project by looking for the **Developer Account ID** from earlier within the light gray text in the second input, preceding `.iam.gserviceaccount.com`, or by checking the project name in the navigaton bar. If not, open the picker in the top navigation bar, and find the right one.
11+
1. Verify that you are on the correct Google Cloud Platform Project by looking for the **Developer Account ID** from earlier within the light gray text in the second input, preceding `.iam.gserviceaccount.com`, or by checking the project name in the navigation bar. If not, open the picker in the top navigation bar, and find the right one.
1212
1. Provide a `Service account name` (e.g. fastlane-supply)
1313
1. Copy the generated email address that is noted below the `Service account-ID` field for later use
1414
1. Click **DONE** (don't click **CREATE AND CONTINUE** as the optional steps such as granting access are not needed): <img src="/img/getting-started/android/creating-service-account.png" width="700" />

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ fastlane release
4545
👻 | Integrates with all major CI systems
4646
🖥 | Supports iOS, Mac, and Android apps
4747
🔧 | Extend and customise _fastlane_ to fit your needs, you're not dependent on anyone
48-
💭 | Never remember any commands any more, just _fastlane_
48+
💭 | Never remember any commands anymore, just _fastlane_
4949
🚢 | Deploy from any computer, including a CI server
5050

5151
## Getting Started

0 commit comments

Comments
 (0)