diff --git a/src/Adapter/PlatformServices.Shared/netstandard1.3/Services/ns13ThreadSafeStringWriter.cs b/src/Adapter/PlatformServices.Shared/netstandard1.3/Services/ns13ThreadSafeStringWriter.cs index 9d429c57b4..b53b56f96e 100644 --- a/src/Adapter/PlatformServices.Shared/netstandard1.3/Services/ns13ThreadSafeStringWriter.cs +++ b/src/Adapter/PlatformServices.Shared/netstandard1.3/Services/ns13ThreadSafeStringWriter.cs @@ -20,7 +20,7 @@ public class ThreadSafeStringWriter : StringWriter private static readonly AsyncLocal> State = new AsyncLocal>(); // This static lock guards access to the state and getting values from dictionary. There can be multiple different instances of ThreadSafeStringWriter - // acessing the state at the same time, and we need to give them the correct state for their async context. Non-concurrect dictionary is used to store the + // accessing the state at the same time, and we need to give them the correct state for their async context. Non-concurrent dictionary is used to store the // state because we need to lock around it anyway, to ensure that the State is populated, but not overwritten by every new instance of ThreadSafeStringWriter. private static readonly object StaticLockObject = new object(); private readonly string outputType;