Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #70

Merged
merged 1 commit into from Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/transloadit.rb
Expand Up @@ -83,7 +83,7 @@ def assembly(options = {})
# Creates a Transloadit::Template instance ready to interact with its corresponding REST API.
#
# See the Transloadit {documentation}[https://transloadit.com/docs/api-docs/#template-api]
# for futher information on Templates and available endpoints.
# for further information on Templates and available endpoints.
#
def template(options = {})
Transloadit::Template.new(self, options)
Expand Down
4 changes: 2 additions & 2 deletions lib/transloadit/assembly.rb
Expand Up @@ -4,7 +4,7 @@
# Represents an Assembly API ready to make calls to the REST API endpoints.
#
# See the Transloadit {documentation}[https://transloadit.com/docs/api-docs/#assembly-api]
# for futher information on Assemblies and available endpoints.
# for further information on Assemblies and available endpoints.
#
class Transloadit::Assembly < Transloadit::ApiModel
DEFAULT_TRIES = 3
Expand All @@ -23,7 +23,7 @@ def steps
# at which point Transloadit will process and store the files according to the
# rules in the Assembly.
# See the Transloadit {documentation}[https://transloadit.com/docs/building-assembly-instructions]
# for futher information on Assemblies and their parameters.
# for further information on Assemblies and their parameters.
#
# Accepts as many IO objects as you wish to process in the assembly.
# The last argument is an optional Hash
Expand Down
2 changes: 1 addition & 1 deletion lib/transloadit/step.rb
Expand Up @@ -6,7 +6,7 @@
# +options+ specific to the chosen robot.
#
# See the Transloadit {documentation}[https://transloadit.com/docs/building-assembly-instructions]
# for futher information on robot types and their parameters.
# for further information on robot types and their parameters.
#
class Transloadit::Step
# @return [String] the name to give the step
Expand Down
2 changes: 1 addition & 1 deletion lib/transloadit/template.rb
Expand Up @@ -4,7 +4,7 @@
# Represents a Template API ready to interact with its corresponding REST API.
#
# See the Transloadit {documentation}[https://transloadit.com/docs/api-docs/#template-api]
# for futher information on Templates and their parameters.
# for further information on Templates and their parameters.
#
class Transloadit::Template < Transloadit::ApiModel
#
Expand Down
2 changes: 1 addition & 1 deletion test/unit/transloadit/test_assembly.rb
Expand Up @@ -286,7 +286,7 @@
end

describe "when replaying assembly notification" do
it "must replay notification of sepcified assembly" do
it "must replay notification of specified assembly" do
VCR.use_cassette "replay_assembly_notification" do
response = @assembly.replay_notification "2ea5d21063ad11e6bc93e53395ce4e7d"

Expand Down