diff options
author | Robin Wallin <walro467@gmail.com> | 2023-01-17 21:14:47 +0100 |
---|---|---|
committer | Florian Wininger <fw.centrale@gmail.com> | 2023-01-17 21:54:52 +0100 |
commit | 69c1c05f16fe3165457467fc7e0a3f5718c3075c (patch) | |
tree | d886600cb27a5343883979bf0cd54332e1fc3402 | |
parent | 8a176a6ea0db1b59a21834df806a257a0b76e943 (diff) | |
download | net-ssh-69c1c05f16fe3165457467fc7e0a3f5718c3075c.tar.gz |
Fix typo
-rw-r--r-- | lib/net/ssh/connection/session.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/ssh/connection/session.rb b/lib/net/ssh/connection/session.rb index fbfc017..218173d 100644 --- a/lib/net/ssh/connection/session.rb +++ b/lib/net/ssh/connection/session.rb @@ -416,7 +416,7 @@ module Net # # matches = ssh.exec!("grep something /some/files") # - # the returned string has an exitstatus method to query it's exit satus + # the returned string has an exitstatus method to query its exit status def exec!(command, status: nil, &block) block_or_concat = block || Proc.new do |ch, type, data| ch[:result] ||= String.new |