From 5c2aff1fbefb4f30f1c809b52a7ca235ea9679ca Mon Sep 17 00:00:00 2001 From: Marty Sluijtman Date: Tue, 23 Aug 2022 22:19:25 +0200 Subject: [PATCH] Typo --- APKBUILD | 4 ++-- main.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/APKBUILD b/APKBUILD index b23caa6..ee2a1ca 100644 --- a/APKBUILD +++ b/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Marty Sluijtman pkgname=sheet-parser pkgver=0.2 -pkgrel=3 +pkgrel=4 pkgdesc="A little D&D character sheet parser written in go" url="https://gitlab.com/EternalWanderer/sheet-parser" arch="all" @@ -28,7 +28,7 @@ package() { } sha512sums=" -ca46035163bd01b0ada37fd8e5dbf1ba939699d9dd934ec29f1412aa6486b077c40b104c2016f77517f7a80852a096ed8d3adea5d5ea19ece16b3b4361e54119 sheet-parser-0.2.tar.gz +3cc84508f6f35b36f27202655ecc574985f82889ae9d648468837e1c25127f911f3e332185e0fe64d9770ace92455244db24922cde2610f8a86a2a4c93943db7 sheet-parser-0.2.tar.gz c1800a72d8d229d46a7ea2dffb83f97c7edaf773a9a875a2ae10b449ae84ab854b80eac05a62002f6a686bb8b014c9b1bc8e2359286b2edccda4d90227a473e5 zsh.completion ab6b9e0f9b1532c0e14e8995c2c77851d449d019edd675c6c6474b8f230c3b9547c36ebc7eeb318f7ec2a695d07c009e3df35a9984fc4570d71181aa730d6852 example.json " diff --git a/main.go b/main.go index 4cd7048..6cd74ae 100644 --- a/main.go +++ b/main.go @@ -148,11 +148,11 @@ func main() { case len(skillString) > 0: result := skillCheck(getSkill(skillString)) if advantage { - color.Yellow("Rolling %s saving throw with advantage...", skillString) + color.Yellow("Rolling %s check with advantage...", skillString) fmt.Printf("x: %d\ty: %d\n", X, Y) color.Green("%d\n", result) } else if disadvantage { - color.Yellow("Rolling %s saving throw with disadvantage...", skillString) + color.Yellow("Rolling %s check with disadvantage...", skillString) fmt.Printf("x: %d\ty: %d\n", X, Y) color.Red("%d\n", result) } else {