How to diff in a comment on github?
You can pull the branch to your local copy, and make your modification. After that, copy the output of git diff
and paste to GitHub as follows.
```diff
your diff file contents
```
It's worth mentioning how to write the diff:
```diff
- line removed
+ line added
```