From d3c586313426caa0b1e7b732cf5bf4125cb078b3 Mon Sep 17 00:00:00 2001 From: Vaibhav Srivastava Date: Sat, 29 Aug 2026 18:06:20 +0530 Subject: [PATCH] docs: fix typo avaliable -> available Signed-off-by: Vaibhav Srivastava --- CefSharp.Example/Filters/PassThruResponseFilter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {