Skip to content

Commit

Permalink
fix(expand): fix typo in ogen.Info struct
Browse files Browse the repository at this point in the history
  • Loading branch information
max107 committed Feb 19, 2025
1 parent 09872c6 commit 14c6c96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openapi/parser/parse_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
func fromOpenapiInfo(info openapi.Info) ogen.Info {
result := ogen.Info{
Title: info.Title,
Summary: info.Title,
Summary: info.Summary,
Description: info.Description,
TermsOfService: info.TermsOfService,
Version: info.Version,
Expand All @@ -31,7 +31,7 @@ func fromOpenapiInfo(info openapi.Info) ogen.Info {
func fromOgenInfo(info ogen.Info) openapi.Info {
result := openapi.Info{
Title: info.Title,
Summary: info.Title,
Summary: info.Summary,
Description: info.Description,
TermsOfService: info.TermsOfService,
Version: info.Version,
Expand Down

0 comments on commit 14c6c96

Please sign in to comment.