Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
Correct limits in bytes not characters (#151)
Browse files Browse the repository at this point in the history
Closes #100
  • Loading branch information
xla authored Feb 13, 2020
1 parent 78a6e10 commit 762b272
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proxy/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ use std::time::SystemTimeError;
/// Project problems.
#[derive(Debug)]
pub enum ProjectValidation {
/// Project names (String32) can only be 32 characters.
/// Project names (String32) can only be 32 bytes.
NameTooLong(String),
/// Project names (String32) can only be 32 characters.
/// Project names (String32) can only be 32 bytes.
DomainTooLong(String),
}

Expand Down

0 comments on commit 762b272

Please sign in to comment.