summaryrefslogtreecommitdiffstats
path: root/challenge/c27.go
diff options
context:
space:
mode:
Diffstat (limited to 'challenge/c27.go')
-rw-r--r--challenge/c27.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge/c27.go b/challenge/c27.go
index 6a5051f..3ee2cbe 100644
--- a/challenge/c27.go
+++ b/challenge/c27.go
@@ -1,4 +1,4 @@
-// Copyright © 2021 siddharth <s@ricketyspace.net>
+// Copyright © 2021 siddharth ravikumar <s@ricketyspace.net>
// SPDX-License-Identifier: ISC
package challenge
@@ -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"}
}
}