about summary refs log tree commit diff
path: root/spec/lib/request_spec.rb
diff options
context:
space:
mode:
authorluzpaz <luzpaz@users.noreply.github.com>2022-08-28 11:44:34 -0400
committerGitHub <noreply@github.com>2022-08-28 17:44:34 +0200
commit4aa3b9bd016ef5d9ce9bb63f260b7f6e35b649ff (patch)
tree98227b3b91e44bae29bd8426c65a0af1ac22ecdc /spec/lib/request_spec.rb
parent546672e292dc3218e996048464c4c52e5d00f766 (diff)
Fix typos (#18604)
* Fix typos

Found via `codespell -q 3 -S ./CHANGELOG.md,./AUTHORS.md,./config/locales,./app/javascript/mastodon/locales -L ba,keypair,medias,pixelx,ro`

* Follow-up typo fix
Diffstat (limited to 'spec/lib/request_spec.rb')
-rw-r--r--spec/lib/request_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/request_spec.rb b/spec/lib/request_spec.rb
index 2d300f18d..5eccf3201 100644
--- a/spec/lib/request_spec.rb
+++ b/spec/lib/request_spec.rb
@@ -63,7 +63,7 @@ describe Request do
         expect(a_request(:get, 'http://example.com').with(headers: subject.headers)).to have_been_made
       end
 
-      it 'closes underlaying connection' do
+      it 'closes underlying connection' do
         expect_any_instance_of(HTTP::Client).to receive(:close)
         expect { |block| subject.perform &block }.to yield_control
       end