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
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ class ObjectSerializer {
if (!typeMap[type]) { // in case we dont know the type
return data;
}
// Get the actual type of this object
// Get the actual type of this object
type = this.findCorrectType(data, type);

// get the map for the correct type.
Expand Down
4 changes: 2 additions & 2 deletions samples/client/petstore/typescript-node/default/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ class ObjectSerializer {
if (!typeMap[type]) { // in case we dont know the type
return data;
}
// Get the actual type of this object
// Get the actual type of this object
type = this.findCorrectType(data, type);

// get the map for the correct type.
Expand Down