File 7591-add-write_concurrency-auto-to-ets-info-1-return-spec.patch of Package erlang
From 194392f60018c5abfb72f8adfed67c3c0c8329b6 Mon Sep 17 00:00:00 2001
From: ruslandoga <ruslandoga+gh@icloud.com>
Date: Sun, 2 Mar 2025 16:23:23 +0300
Subject: [PATCH] add write_concurrency auto to ets:info/1 return spec
---
lib/stdlib/src/ets.erl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/stdlib/src/ets.erl b/lib/stdlib/src/ets.erl
index 36a8736159..b990de5b59 100644
--- a/lib/stdlib/src/ets.erl
+++ b/lib/stdlib/src/ets.erl
@@ -496,7 +496,7 @@ table, `undefined` is returned. If `Table` is not of the correct type, a
| {protection, table_access()}
| {size, non_neg_integer()}
| {type, table_type()}
- | {write_concurrency, boolean()}
+ | {write_concurrency, boolean() | auto}
| {read_concurrency, boolean()}.
info(_) ->
--
2.43.0