Skip to content

Commit 5e909db

Browse files
committed
remote: fix verison/version typo
1 parent 696f9e8 commit 5e909db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hnix-store-remote/src/System/Nix/Store/Remote/Client/Core.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,6 @@ runStoreSocket preStoreConfig code =
169169
pure ClientHandshakeOutput
170170
{ clientHandshakeOutputNixVersion = daemonNixVersion
171171
, clientHandshakeOutputTrust = remoteTrustsUs
172-
, clientHandshakeOutputLeastCommonVerison = leastCommonVersion
172+
, clientHandshakeOutputLeastCommonVersion = leastCommonVersion
173173
, clientHandshakeOutputServerVersion = daemonVersion
174174
}

hnix-store-remote/src/System/Nix/Store/Remote/Types/Handshake.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ data ClientHandshakeInput = ClientHandshakeInput
1919
data ClientHandshakeOutput = ClientHandshakeOutput
2020
{ clientHandshakeOutputNixVersion :: Maybe Text -- ^ Textual version, since 1.33
2121
, clientHandshakeOutputTrust :: Maybe TrustedFlag -- ^ Whether remote side trusts us
22-
, clientHandshakeOutputLeastCommonVerison :: ProtoVersion -- ^ Minimum protocol version supported by both sides
22+
, clientHandshakeOutputLeastCommonVersion :: ProtoVersion -- ^ Minimum protocol version supported by both sides
2323
, clientHandshakeOutputServerVersion :: ProtoVersion -- ^ Protocol version supported by the server
2424
} deriving (Eq, Generic, Ord, Show)
2525

0 commit comments

Comments
 (0)