From 928ce6a6301a50331ebc211c173c74d18969c8eb Mon Sep 17 00:00:00 2001 From: Brian Quinlan Date: Fri, 9 Aug 2024 08:26:18 -0700 Subject: [PATCH] Update pkgs/http_profile/lib/src/utils.dart Co-authored-by: Anikate De <40452578+Anikate-De@users.noreply.github.com> --- pkgs/http_profile/lib/src/utils.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/http_profile/lib/src/utils.dart b/pkgs/http_profile/lib/src/utils.dart index aafc4e895a..780bb446b8 100644 --- a/pkgs/http_profile/lib/src/utils.dart +++ b/pkgs/http_profile/lib/src/utils.dart @@ -26,7 +26,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