Skip to content

Commit

Permalink
Merge pull request #8750 from swagger-api/template-engine-typo-fix
Browse files Browse the repository at this point in the history
fixed typo.
  • Loading branch information
HugoMario authored Sep 27, 2018
2 parents 7cc45cf + 97c35c2 commit ef51d6e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public String getRendered(String templateFile, Map<String, Object> templateData)
}

@Override
public String gerName() {
public String getName() {
return CodegenConstants.HANDLEBARS_TEMPLATE_ENGINE;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public String getRendered(String templateFile, Map<String, Object> templateData)
}

@Override
public String gerName() {
public String getName() {
return CodegenConstants.MUSTACHE_TEMPLATE_ENGINE;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ public interface TemplateEngine {

String getRendered(String templateFile, Map<String, Object> templateData) throws IOException;

String gerName();
String getName();
}

0 comments on commit ef51d6e

Please sign in to comment.