File 0149-Change-succient-to-succinct.patch of Package erlang
From a712f1279f22f66bc172de2a0405a2aed55ae7a9 Mon Sep 17 00:00:00 2001
From: Martin Davidsson <martin.davidsson+github@gmail.com>
Date: Wed, 9 Oct 2024 11:50:34 -0400
Subject: [PATCH] Change succient to succinct
I'm not familiar with the word "succient" and have to think the intended word here is "succinct".
---
system/doc/reference_manual/expressions.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/system/doc/reference_manual/expressions.md b/system/doc/reference_manual/expressions.md
index 5bf071c8d7..a6888e78d4 100644
--- a/system/doc/reference_manual/expressions.md
+++ b/system/doc/reference_manual/expressions.md
@@ -577,7 +577,7 @@ Finally, let us assume that `a()` returns `{ok,-1}`. Because `true = A >= 0` use
the match operator `=`, a `{badmatch,false}` run-time error occurs when the
expression fails to match the pattern.
-The example can be written in a less succient way using nested case expressions:
+The example can be written in a less succinct way using nested case expressions:
```
case a() of
--
2.43.0