Fix typo.

This commit is contained in:
Chris R 2015-04-28 13:44:40 -07:00
parent 117486de94
commit 86f94b7590
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ namespace Microsoft.AspNet.Http
private readonly IFeatureCollection _features;
private FeatureReference<IHttpConnectionFeature> _connection = FeatureReference<IHttpConnectionFeature>.Default;
private FeatureReference<ITlsConnectionFeature> _tlsConnectoin = FeatureReference<ITlsConnectionFeature>.Default;
private FeatureReference<ITlsConnectionFeature> _tlsConnection = FeatureReference<ITlsConnectionFeature>.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