Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkgs/http_profile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 0.1.1-wip

* Fixed unintended HTML tags in doc comments.
* Fixed the code examples in the `headersListValues` and `headersCommaValues`
doc comments.

## 0.1.0

Expand Down
6 changes: 3 additions & 3 deletions pkgs/http_profile/lib/src/http_profile_request_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ final class HttpProfileRequestData {
/// // Foo: Bar
/// // Foo: Baz
///
/// profile?.requestData.headersListValues({'Foo': ['Bar', 'Baz']});
/// profile?.requestData.headersListValues = {'Foo': ['Bar', 'Baz']};
/// ```
set headersListValues(Map<String, List<String>>? value) {
_checkAndUpdate();
Expand All @@ -117,7 +117,7 @@ final class HttpProfileRequestData {
/// // Foo: Bar
/// // Foo: Baz
///
/// profile?.requestData.headersCommaValues({'Foo': 'Bar, Baz']});
/// profile?.requestData.headersCommaValues = {'Foo': 'Bar, Baz'};
/// ```
set headersCommaValues(Map<String, String>? value) {
_checkAndUpdate();
Expand All @@ -134,7 +134,7 @@ final class HttpProfileRequestData {
/// For example, the map
///
/// ```dart
/// {'Foo': ['Bar', 'Baz']});
/// {'Foo': ['Bar', 'Baz']}
/// ```
///
/// represents the headers
Expand Down
6 changes: 3 additions & 3 deletions pkgs/http_profile/lib/src/http_profile_response_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ final class HttpProfileResponseData {
/// // Foo: Bar
/// // Foo: Baz
///
/// profile?.requestData.headersListValues({'Foo': ['Bar', 'Baz']});
/// profile?.responseData.headersListValues = {'Foo': ['Bar', 'Baz']};
/// ```
set headersListValues(Map<String, List<String>>? value) {
_checkAndUpdate();
Expand All @@ -115,7 +115,7 @@ final class HttpProfileResponseData {
/// // Foo: Bar
/// // Foo: Baz
///
/// profile?.responseData.headersCommaValues({'Foo': 'Bar, Baz']});
/// profile?.responseData.headersCommaValues = {'Foo': 'Bar, Baz'};
/// ```
set headersCommaValues(Map<String, String>? value) {
_checkAndUpdate();
Expand All @@ -132,7 +132,7 @@ final class HttpProfileResponseData {
/// For example, the map
///
/// ```dart
/// {'Foo': ['Bar', 'Baz']});
/// {'Foo': ['Bar', 'Baz']}
/// ```
///
/// represents the headers
Expand Down
Loading