diff --git a/src/Temporalio/Bridge/EphemeralServer.cs b/src/Temporalio/Bridge/EphemeralServer.cs
index 256c4744..42aa8bbf 100644
--- a/src/Temporalio/Bridge/EphemeralServer.cs
+++ b/src/Temporalio/Bridge/EphemeralServer.cs
@@ -30,7 +30,7 @@ private unsafe EphemeralServer(
public override unsafe bool IsInvalid => ptr == null;
///
- /// Gets the target host:port of the server.
+ /// Gets the target host:port of the server.
///
public string Target { get; private init; }
diff --git a/src/Temporalio/Bridge/OptionsExtensions.cs b/src/Temporalio/Bridge/OptionsExtensions.cs
index c93ad840..ca1ce02e 100644
--- a/src/Temporalio/Bridge/OptionsExtensions.cs
+++ b/src/Temporalio/Bridge/OptionsExtensions.cs
@@ -334,7 +334,7 @@ public static Interop.ClientHttpConnectProxyOptions ToInteropOptions(
{
target_host = scope.ByteArray(options.TargetHost),
username = scope.ByteArray(options.BasicAuth?.Username),
- password = scope.ByteArray(options.BasicAuth?.Username),
+ password = scope.ByteArray(options.BasicAuth?.Password),
};
}
diff --git a/src/Temporalio/Client/HttpConnectProxyOptions.cs b/src/Temporalio/Client/HttpConnectProxyOptions.cs
index 8b23ba72..8d3f5ae0 100644
--- a/src/Temporalio/Client/HttpConnectProxyOptions.cs
+++ b/src/Temporalio/Client/HttpConnectProxyOptions.cs
@@ -20,11 +20,11 @@ public HttpConnectProxyOptions()
///
/// Initializes a new instance of the class.
///
- /// A 'host:port' string representing the target to proxy through.
+ /// A host:port string representing the target to proxy through.
public HttpConnectProxyOptions(string targetHost) => TargetHost = targetHost;
///
- /// Gets or sets the target host to proxy through as a host:port string.
+ /// Gets or sets the target host to proxy through as a host:port string.
///
///
/// This is required for all proxy options.