doc: remove trailing whitespace

My vim/git setup wants to fix those on every commit which gets a bit annoying,
let's just remove them: sed -i 's/ *$//g' $(git ls-files doc)
This commit is contained in:
Peter Hutterer 2021-05-07 09:15:06 +10:00
parent ac05f6bb03
commit f0d3f1f9d2
5 changed files with 51 additions and 51 deletions

View file

@ -184,7 +184,7 @@ static const struct pw_stream_events stream_events = {
```
We are for the moment only interested now in the `process` event. This event
is called whenever we need to produce more data. We'll see how that function
is called whenever we need to produce more data. We'll see how that function
is implemented but first we need to setup the format of the stream:
```c