Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit 86f94b7

Browse files
committed
Fix typo.
1 parent 117486d commit 86f94b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.AspNet.Http/DefaultConnectionInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class DefaultConnectionInfo : ConnectionInfo
1515
private readonly IFeatureCollection _features;
1616

1717
private FeatureReference<IHttpConnectionFeature> _connection = FeatureReference<IHttpConnectionFeature>.Default;
18-
private FeatureReference<ITlsConnectionFeature> _tlsConnectoin = FeatureReference<ITlsConnectionFeature>.Default;
18+
private FeatureReference<ITlsConnectionFeature> _tlsConnection = FeatureReference<ITlsConnectionFeature>.Default;
1919

2020
public DefaultConnectionInfo(IFeatureCollection features)
2121
{
@@ -29,7 +29,7 @@ private IHttpConnectionFeature HttpConnectionFeature
2929

3030
private ITlsConnectionFeature TlsConnectionFeature
3131
{
32-
get { return _tlsConnectoin.Fetch(_features) ?? _tlsConnectoin.Update(_features, new TlsConnectionFeature()); }
32+
get { return _tlsConnection.Fetch(_features) ?? _tlsConnection.Update(_features, new TlsConnectionFeature()); }
3333
}
3434

3535
public override IPAddress RemoteIpAddress

0 commit comments

Comments
 (0)