From 29addebcc9fba6a9d00ab777580c0848d82aadc5 Mon Sep 17 00:00:00 2001 From: Dragos Coscodan Date: Sun, 26 Apr 2026 00:53:50 +0300 Subject: [PATCH 1/5] Fix readme.implements beman-tidy waring running beman-tidy before: ```bash [warning][readme.implements]: Invalid/missing/duplicate 'Implements:' line in 'README.md'. See https://github.com/bemanproject/beman/blob/main/docs/beman_standard.md#readmeimplements for more information. check [Recommendation][readme.implements] ... failed ``` running beman-tidy after: ```bash Running check [Recommendation][readme.implements] ... check [Recommendation][readme.implements] ... passed ``` --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 25c9b5b..eee2ba9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -# beman.copyable\_function: A Beman Library Implementation of copyable_function ([P2548](https://wg21.link/P2548)) +# beman.copyable\_function: A Beman Library Implementation of copyable_function + +**Implements**: [`copyable_function` (P2548)](https://wg21.link/P2548) @@ -15,6 +13,8 @@ SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception `beman.copyable_function` is a type-erased function wrapper that can represent any copyable callable matching the function signature R(Args...). The library conforms to the [The Beman Standard](https://github.com/bemanproject/beman/blob/main/docs/beman_standard.md). +**Implements**: [`copyable_function` (P2548)](https://wg21.link/P2548) + **Status**: [Under development and not yet ready for production use.](https://github.com/bemanproject/beman/blob/main/docs/beman_library_maturity_model.md#under-development-and-not-yet-ready-for-production-use) ## License From 9ce893b74dea5833a40b337ae43a5300b5365e53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Darius=20Nea=C8=9Bu?= Date: Mon, 4 May 2026 19:21:22 +0300 Subject: [PATCH 4/5] Fix title --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8196e64..26cb248 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# beman.copyable\_function: A Beman Library Implementation of copyable_function +# beman.copyable_function: A Beman Library Implementation of copyable_function