From 5ae859b883a9aef9e13de86445b3afe931ef6b36 Mon Sep 17 00:00:00 2001 From: facebreeze Date: Wed, 27 May 2026 09:21:36 +0800 Subject: [PATCH] Update stream.rst to clarify fragmentLock usage fragmentLock can be used with **Stream[Fragment[T]]** instead of **Stream[Flow[T]]** --- source/SpinalHDL/Libraries/stream.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/SpinalHDL/Libraries/stream.rst b/source/SpinalHDL/Libraries/stream.rst index f856ffae6c..8e191f2e8f 100644 --- a/source/SpinalHDL/Libraries/stream.rst +++ b/source/SpinalHDL/Libraries/stream.rst @@ -482,8 +482,8 @@ When you have multiple Streams and you want to arbitrate them to drive a single * - transactionLock - The port selection is locked until the transaction on the selected port is consumed. * - fragmentLock - - | Could be used to arbitrate Stream[Flow[T]]. - | In this mode, the port selection is locked until the selected port finish is burst (last=True). + - | Could be used to arbitrate Stream[Fragment[T]]. + | In this mode, the port selection is locked until the selected port finish its burst (last=True). .. list-table::