From ade39dfe3cbfbc7927e3b65cac2700f3a5da255a Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Tue, 7 Jan 2025 15:09:47 +0200 Subject: [PATCH] docs: polish --- src/interfaces/ISablierFlow.sol | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/interfaces/ISablierFlow.sol b/src/interfaces/ISablierFlow.sol index 426b713f..8f2efba8 100644 --- a/src/interfaces/ISablierFlow.sol +++ b/src/interfaces/ISablierFlow.sol @@ -138,9 +138,8 @@ interface ISablierFlow is /// @notice Returns the stream's status. /// @dev Reverts if `streamId` references a null stream. - /// Note: - /// - Streams can be paused and resumed at any moment. As a result, integrators should exercise caution when - /// depending on the return value of this function. + /// Integrators should exercise caution when depending on the return value of this function as streams can be paused + /// and resumed at any moment. /// @param streamId The stream ID for the query. function statusOf(uint256 streamId) external view returns (Flow.Status status);