Skip to content

Commit ae39c84

Browse files
authored
Fix typos in comments and documentation (#726)
2 parents 4fc1463 + 71262f6 commit ae39c84

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/screenshot-compositor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Sets the origin of the screenshot text bounding box. This must be provided as an
131131

132132
**`font_size`**
133133

134-
Sets the font size for the screenshot text. If this value is too large, the compositor will crash saying it was unable to draw the text within the bounding box specifed in `text_size`.*
134+
Sets the font size for the screenshot text. If this value is too large, the compositor will crash saying it was unable to draw the text within the bounding box specified in `text_size`.*
135135

136136
**`screenshot_size`**
137137

lib/fastlane/plugin/wpmreleasetoolkit/helper/configure_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def self.repo_commits_ahead_of_remote
151151
end
152152

153153
### A helper function to extract the distance from the provided string.
154-
### (ie – this function will recieve "behind 2" or "ahead 6" and return 2 or 6, respectively.
154+
### (ie – this function will receive "behind 2" or "ahead 6" and return 2 or 6, respectively.
155155
def self.parse_distance(match)
156156
distance = match.to_s.scan(/\d+/).first
157157

@@ -265,7 +265,7 @@ def self.project_encryption_key
265265
end
266266

267267
## Updates the project encryption key defined in ~/.mobile-secrets/keys.json
268-
## The updated file is commited and push to the repo
268+
## The updated file is committed and pushed to the repo
269269
def self.update_project_encryption_key
270270
# Update keys.json with the new key
271271
keys_json = mobile_secrets_keys_json

lib/fastlane/plugin/wpmreleasetoolkit/helper/ios/ios_l10n_linter_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class L10nLinterHelper
1414
attr_reader :install_path, :version
1515

1616
# @param [String] install_path The path to install SwiftGen to. Usually something like "$PROJECT_DIR/vendor/swiftgen/#{SWIFTGEN_VERSION}".
17-
# It's recommended to provide an absolute path here rather than a relative one, to ensure it's not dependant on where the action is run from.
17+
# It's recommended to provide an absolute path here rather than a relative one, to ensure it's not dependent on where the action is run from.
1818
# @param [String] version The version of SwiftGen to use. This will be used both:
1919
# - to check if the current version located in `install_path`, if it already exists, is the expected one
2020
# - to know which version to download if there is not one installed in `install_path` yet

spec/upload_to_s3_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def stub_s3_response_for_file(key, exists: true)
273273
end
274274
end
275275

276-
# Untill we remove the deprecated skip_if_exists option, if_exists needs to be optional.
276+
# Until we remove the deprecated skip_if_exists option, if_exists needs to be optional.
277277
# if_exists also has a verify_block that will throw if the given value doesn't match the allowed ones.
278278
# This test makes sure that if the user omits or set if_exists as nil, Fastlane bypasses the verify_block.
279279
# This is models a possible usage for the action—we want to be extra careful.

0 commit comments

Comments
 (0)