diff --git a/CefSharp.Example/Filters/PassThruResponseFilter.cs b/CefSharp.Example/Filters/PassThruResponseFilter.cs index d6b31b47e5..1f0f85d85a 100644 --- a/CefSharp.Example/Filters/PassThruResponseFilter.cs +++ b/CefSharp.Example/Filters/PassThruResponseFilter.cs @@ -41,7 +41,7 @@ FilterStatus IResponseFilter.Filter(Stream dataIn, out long dataInRead, Stream d dataIn.Read(readBytes, 0, readBytes.Length); dataOut.Write(readBytes, 0, readBytes.Length); - //If we read less than the total amount avaliable then we need + //If we read less than the total amount available then we need //return FilterStatus.NeedMoreData so we can then write the rest if (dataInRead < dataIn.Length) {