diff --git a/src/Microsoft.AspNet.Http/DefaultConnectionInfo.cs b/src/Microsoft.AspNet.Http/DefaultConnectionInfo.cs index a01cee053e..feae42f1f4 100644 --- a/src/Microsoft.AspNet.Http/DefaultConnectionInfo.cs +++ b/src/Microsoft.AspNet.Http/DefaultConnectionInfo.cs @@ -15,7 +15,7 @@ namespace Microsoft.AspNet.Http private readonly IFeatureCollection _features; private FeatureReference _connection = FeatureReference.Default; - private FeatureReference _tlsConnectoin = FeatureReference.Default; + private FeatureReference _tlsConnection = FeatureReference.Default; public DefaultConnectionInfo(IFeatureCollection features) { @@ -29,7 +29,7 @@ namespace Microsoft.AspNet.Http private ITlsConnectionFeature TlsConnectionFeature { - get { return _tlsConnectoin.Fetch(_features) ?? _tlsConnectoin.Update(_features, new TlsConnectionFeature()); } + get { return _tlsConnection.Fetch(_features) ?? _tlsConnection.Update(_features, new TlsConnectionFeature()); } } public override IPAddress RemoteIpAddress