Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
StarProxima committed May 9, 2024
1 parent 91d815a commit 7e875e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions swagger_parser/lib/src/parser/parser/open_api_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class OpenApiParser {
final typeWithImport = _findType(
contentTypeValue[_schemaConst] as Map<String, dynamic>,
additionalName: additionalName,
// Return type The return type is most often required in any case
// Return type is most often required in any case
isRequired: true,
);
if (typeWithImport.import != null) {
Expand Down Expand Up @@ -445,7 +445,7 @@ class OpenApiParser {
final typeWithImport = _findType(
code2xx[_schemaConst] as Map<String, dynamic>? ?? {},
additionalName: additionalName,
// Return type The return type is most often required in any case
// Return type is most often required in any case
isRequired: true,
);
if (typeWithImport.import != null) {
Expand Down

0 comments on commit 7e875e3

Please sign in to comment.