summaryrefslogtreecommitdiffstats
path: root/challenge/c27.go
diff options
context:
space:
mode:
authorsiddharth ravikumar <s@ricketyspace.net>2022-11-11 12:18:47 -0500
committersiddharth ravikumar <s@ricketyspace.net>2022-11-11 12:18:47 -0500
commit23b6e50fbdab5d2b3625c35421b9e60a20ea87fd (patch)
treea2b78d944ddc850a0f64483bfe49b2c4755e0347 /challenge/c27.go
parent7fc0eea5e7cba009f3f2b2359f4ecb9ee0002b88 (diff)
challenge: fix go vet warnings
Diffstat (limited to 'challenge/c27.go')
-rw-r--r--challenge/c27.go2
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"}
}
}