Remove schema mention in error message

This commit is contained in:
Clementine Urquizar 2020-07-28 15:18:05 +02:00
parent aa545e5386
commit f078cbac4d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ impl fmt::Display for Error {
use self::Error::*;
match self {
FieldNameNotFound(field) => write!(f, "The field {:?} doesn't exist", field),
PrimaryKeyAlreadyPresent => write!(f, "The schema already have an primary key. It's impossible to update it"),
PrimaryKeyAlreadyPresent => write!(f, "A primary key is already present. It's impossible to update it"),
MaxFieldsLimitExceeded => write!(f, "The maximum of possible reattributed field id has been reached"),
}
}