Skip to content

Commit

Permalink
Match formatting in two similar functions
Browse files Browse the repository at this point in the history
Makes it easier to visually compare them
  • Loading branch information
cmcaine committed Sep 7, 2023
1 parent 8f35185 commit 0c925f3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Connections.jl
Original file line number Diff line number Diff line change
Expand Up @@ -571,9 +571,10 @@ function getconnection(::Type{SSLContext},
end

function getconnection(::Type{SSLStream},
host::AbstractString,
port::AbstractString;
kw...)::SSLStream
host::AbstractString,
port::AbstractString;
kw...)::SSLStream

port = isempty(port) ? "443" : port
@debugv 2 "SSL connect: $host:$port..."
tcp = getconnection(TCPSocket, host, port; kw...)
Expand Down

0 comments on commit 0c925f3

Please sign in to comment.