From 2327332f641818deb312e0a15c0b618e8c6188fc Mon Sep 17 00:00:00 2001 From: Nolan Caudill Date: Wed, 25 Oct 2023 15:24:12 -0700 Subject: [PATCH] Fix minor typo in error.rb In one of the comments, "occurs" is slightly misspelled. This is a PR for that correction. --- contrib/ruby/lib/trilogy/error.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/ruby/lib/trilogy/error.rb b/contrib/ruby/lib/trilogy/error.rb index e4af3a47..7116830d 100644 --- a/contrib/ruby/lib/trilogy/error.rb +++ b/contrib/ruby/lib/trilogy/error.rb @@ -117,7 +117,7 @@ class ConnectionClosed < IOError include ConnectionError end - # Occurrs when a socket read or write returns EOF or when an operation is + # Occurs when a socket read or write returns EOF or when an operation is # attempted on a socket which previously encountered an error. class EOFError < BaseConnectionError end