Skip to content

Commit

Permalink
chore: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHotsiy committed Feb 23, 2018
1 parent 309cc23 commit 0192b70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/services/schema-normalizer.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ class SchemaWalker {
const res = visitor(obj, pointer);
obj['x-redoc-visited'] = false;
// circular, return only title and description
return { title: res.title, description: res.description }
return { title: res.title, description: res.description };
}

obj['x-redoc-visited'] = true;
if (obj.properties) {
let ptr = JsonPointer.join(pointer, ['properties']);
Expand Down

0 comments on commit 0192b70

Please sign in to comment.