From f79c9cf00be1183c647f0eca3020cc65b2d38b1a Mon Sep 17 00:00:00 2001 From: Philippe Boneff Date: Tue, 12 Aug 2025 14:38:39 +0000 Subject: [PATCH] desambiguate --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 21a4f236c..29ad59e8e 100644 --- a/README.md +++ b/README.md @@ -267,9 +267,13 @@ Writing to the log follows this flow: Once an index has been returned, the new data is sequenced, but not necessarily integrated into the log. -As discussed above in [Integration](#integration), sequenced entries will be _asynchronously_ integrated into the log and be made available via the read API. -Some personalities may need to block until this has been performed, e.g. because they will provide the requester with an inclusion proof, which requires integration. -Such personalities are recommended to use [Synchronous Publication](#synchronous-publication) to perform this blocking. +As discussed above in [Integration](#integration) and [Publishing](#publishing), +sequenced entries will be first _asynchronously_ integrated into the log, and +then published on the read API by a second _asynchronous_ process. Some +personalities may need to block until this has been performed, e.g. because they +will provide the requester with an inclusion proof, which requires integration +and publication. Such personalities are recommended to use [Synchronous Publication](#synchronous-publication) +to perform this blocking. #### Reading from the Log