Changed typo for descending order ENUM

This commit is contained in:
Ioannis Diplas 2019-07-24 11:35:09 +00:00
parent 5f23a071f0
commit 5cc055f7c1
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("DESC");
DSC("DSC");
private final String text;