Changed typo for descending order ENUM

This commit is contained in:
Ioannis Diplas 2019-07-24 11:54:17 +00:00
parent 5cc055f7c1
commit fa94488f3f
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ package eu.dnetlib.repo.manager.domain;
public enum OrderByType {
ASC("ASC"),
DSC("DSC");
DSC("DESC");
private final String text;