diff --git a/akka-docs/src/main/paradox/stream/operators/Source-or-Flow/buffer.md b/akka-docs/src/main/paradox/stream/operators/Source-or-Flow/buffer.md index f01fc5813e..c6957147e2 100644 --- a/akka-docs/src/main/paradox/stream/operators/Source-or-Flow/buffer.md +++ b/akka-docs/src/main/paradox/stream/operators/Source-or-Flow/buffer.md @@ -6,7 +6,7 @@ Allow for a temporarily faster upstream events by buffering `size` elements. ## Signature -@apidoc[Source.buffer](Source) { scala"#buffer(size:Int,overflowStrategy:akka.stream.OverflowStrategy):FlowOps.this.Repr[Out]" java="#buffer(int,akka.stream.OverflowStrategy)" } +@apidoc[Source.buffer](Source) { scala="#buffer(size:Int,overflowStrategy:akka.stream.OverflowStrategy):FlowOps.this.Repr[Out]" java="#buffer(int,akka.stream.OverflowStrategy)" } @apidoc[Flow.buffer](Flow) { scala="#buffer(size:Int,overflowStrategy:akka.stream.OverflowStrategy):FlowOps.this.Repr[Out]" java="#buffer(int,akka.stream.OverflowStrategy)" } ## Description