File 0294-Fix-doc-spelling.patch of Package erlang
From a825a81c42a056586a5874e6d266dc37758f96a4 Mon Sep 17 00:00:00 2001
From: Zhe Cheng <chengzhe02@qq.com>
Date: Thu, 12 Aug 2021 09:24:00 +0800
Subject: [PATCH] Fix doc spelling
Fix doc spelling
---
lib/mnesia/src/mnesia_recover.erl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/mnesia/src/mnesia_recover.erl b/lib/mnesia/src/mnesia_recover.erl
index 8749b625a1..ec3f3822aa 100644
--- a/lib/mnesia/src/mnesia_recover.erl
+++ b/lib/mnesia/src/mnesia_recover.erl
@@ -428,7 +428,7 @@ check_what_happened([H | T], Aborts, Commits) ->
check_what_happened([], Aborts, Commits) ->
if
Aborts == 0, Commits == 0 -> aborted; % None of the active nodes knows
- Aborts > 0 -> aborted; % Someody has aborted
+ Aborts > 0 -> aborted; % Somebody has aborted
Aborts == 0, Commits > 0 -> committed % All has committed
end.
--
2.31.1