From 95d939683fe0f8ece12f136e0659fc0c7d12516c Mon Sep 17 00:00:00 2001 From: Brian Quinlan Date: Fri, 9 Aug 2024 08:25:07 -0700 Subject: [PATCH] Update pkgs/http/lib/src/base_response.dart Co-authored-by: Anikate De <40452578+Anikate-De@users.noreply.github.com> --- pkgs/http/lib/src/base_response.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/http/lib/src/base_response.dart b/pkgs/http/lib/src/base_response.dart index 5a076d1f2e..39934ceea9 100644 --- a/pkgs/http/lib/src/base_response.dart +++ b/pkgs/http/lib/src/base_response.dart @@ -129,7 +129,7 @@ var _headerSplitter = RegExp(r'[ \t]*,[ \t]*'); /// would both be result in `response.headers` => "lang=en; Path=/foo/,SID=x23" /// /// The idea behind this regex is that `,=` is more likely to -/// start a new `` then be part of `` or +/// start a new `` than be part of `` or /// ``. /// /// See https://datatracker.ietf.org/doc/html/rfc6265#section-4.1.1