Skip to content

Commit

Permalink
Fix typos (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
kianmeng committed Mar 12, 2024
1 parent 7180977 commit ffd7d18
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
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

0 comments on commit ffd7d18

Please sign in to comment.