Automatically remove trailing whitespace from text files. (#527) r=rnewman

This was done using the following shell script:

```
find . -type f -not -path "*target*" \
       '(' -name '*.rs' -o -name '*.md' -o -name '*.toml' ')' -print0 | \
    xargs -0 sed -i '' -E 's/[[:space:]]*$//'
```

Which is admittedly imperfect, but manages to hit everything that was a problem in this repo.
This commit is contained in:
Thom 2018-01-19 22:21:04 -05:00 committed by Richard Newman
parent 023fd9b70b
commit 9740cafdbd
19 changed files with 88 additions and 88 deletions