Skip to content

Commit

Permalink
Fix a typo (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
ream88 authored Oct 31, 2023
1 parent 519082c commit 5653cb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/upgrading/v1.0.0-rc1.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Remove `handle_buffers_batch/4`/`handle_process_list/4`/`handle_write_list/4` callback

In `v1.0.0-rc1` we removed `handle_buffers_batch/4` callback. Instead of handling list of buffer in this callback, you have to handle every single buffer separately in `hanlde_buffer/4` callback.
In `v1.0.0-rc1` we removed `handle_buffers_batch/4` callback. Instead of handling list of buffer in this callback, you have to handle every single buffer separately in `handle_buffer/4` callback.

```diff
@impl true
Expand Down Expand Up @@ -45,4 +45,4 @@ spec =

- pipeline = Membrane.Testing.Pipeline.start_link_supervised(structure: spec)
+ pipeline = Membrane.Testing.Pipeline.start_link_supervised(spec: spec)
```
```

0 comments on commit 5653cb3

Please sign in to comment.