From 05e76ee1a062a77a947cc0c0695686624bf33077 Mon Sep 17 00:00:00 2001 From: dudu Date: Fri, 24 Jan 2025 11:44:05 +0800 Subject: [PATCH] refactor: fix typo --- src/Enyim.Caching/Configuration/MemcachedClientConfiguration.cs | 1 - src/Enyim.Caching/Memcached/PooledSocket.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Enyim.Caching/Configuration/MemcachedClientConfiguration.cs b/src/Enyim.Caching/Configuration/MemcachedClientConfiguration.cs index f54fa12e..cf042efe 100755 --- a/src/Enyim.Caching/Configuration/MemcachedClientConfiguration.cs +++ b/src/Enyim.Caching/Configuration/MemcachedClientConfiguration.cs @@ -24,7 +24,6 @@ public class MemcachedClientConfiguration : IMemcachedClientConfiguration private ITranscoder _transcoder; private IMemcachedKeyTransformer _keyTransformer; - /// /// Initializes a new instance of the class. /// diff --git a/src/Enyim.Caching/Memcached/PooledSocket.cs b/src/Enyim.Caching/Memcached/PooledSocket.cs index 784a8585..8c47f1d9 100755 --- a/src/Enyim.Caching/Memcached/PooledSocket.cs +++ b/src/Enyim.Caching/Memcached/PooledSocket.cs @@ -12,7 +12,7 @@ namespace Enyim.Caching.Memcached { - [DebuggerDisplay("[ Address: {endpoint}, IsAlive = {IsAlive} ]")] + [DebuggerDisplay("[ Address: {_endpoint}, IsAlive = {_isAlive} ]")] public partial class PooledSocket : IDisposable { private readonly ILogger _logger;