diff options
Diffstat (limited to 'challenge/c27.go')
-rw-r--r-- | challenge/c27.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge/c27.go b/challenge/c27.go index 9de3415..3ee2cbe 100644 --- a/challenge/c27.go +++ b/challenge/c27.go @@ -55,7 +55,7 @@ func C27() { // Check if `plain` high ASCII for _, p := range plain { if p >= 128 { - return plain, lib.CPError{"Has high ASCII values"} + return plain, lib.CPError{Err: "Has high ASCII values"} } } |