~sircmpwn/hare-dev

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
2 2

[PATCH hare] regex: fix typos in error messages

Details
Message ID
<20240413090834.10388-1-bgs@turminal.net>
DKIM signature
pass
Download raw message
Patch: +2 -2
Signed-off-by: Bor Grošelj Simić <bgs@turminal.net>
---
 regex/regex.ha | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/regex/regex.ha b/regex/regex.ha
index 175eb851..137c904d 100644
--- a/regex/regex.ha
+++ b/regex/regex.ha
@@ -434,7 +434,7 @@ fn parse_repetition(
		min = match (strconv::stoi(min_str)) {
		case let res: int =>
			yield if (res < 0) {
				return `Negative repitition count '{-n}'`: error;
				return `Negative repetition count '{-n}'`: error;
			} else {
				yield res: size;
			};
@@ -448,7 +448,7 @@ fn parse_repetition(
		max = match (strconv::stoi(max_str)) {
		case let res: int =>
			yield if (res < 0) {
				return `Negative repitition count '{-n}'`: error;
				return `Negative repetition count '{-n}'`: error;
			} else {
				yield res: size;
			};
-- 
2.43.0

[hare/patches] build success

builds.sr.ht <builds@sr.ht>
Details
Message ID
<D0IVBP6VTNGU.24FTBPDVKKKKK@fra01>
In-Reply-To
<20240413090834.10388-1-bgs@turminal.net> (view parent)
DKIM signature
missing
Download raw message
hare/patches: SUCCESS in 1m0s

[regex: fix typos in error messages][0] from [Bor Grošelj Simić][1]

[0]: https://lists.sr.ht/~sircmpwn/hare-dev/patches/50971
[1]: bgs@turminal.net

✓ #1194604 SUCCESS hare/patches/freebsd.yml https://builds.sr.ht/~sircmpwn/job/1194604
✓ #1194605 SUCCESS hare/patches/openbsd.yml https://builds.sr.ht/~sircmpwn/job/1194605
✓ #1194603 SUCCESS hare/patches/alpine.yml  https://builds.sr.ht/~sircmpwn/job/1194603
Details
Message ID
<D0JYFRKJ3S84.S2QTLEUP1X3H@vladh.net>
In-Reply-To
<20240413090834.10388-1-bgs@turminal.net> (view parent)
DKIM signature
pass
Download raw message
Thanks!

to git@git.sr.ht:~sircmpwn/hare
  2ac7218b..d1cf4089  master -> master
Reply to thread Export thread (mbox)