Fix bullet indentation

Static analysis keeps bitching about this.
This commit is contained in:
Paul Pacheco 2018-10-11 20:56:21 -05:00 committed by GitHub
parent 6684851467
commit 49b3f2bcaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,9 +23,9 @@ Always write a clear log message for your commits. One-line messages are fine fo
> A paragraph describing what changed and its impact."
Submit your pull requests to the right branch:
* fixes for bug fixes
* improvements for refactorings and cleanups, we love to delete code.
* features for new shiny features you want in HLAPI.
* fixes for bug fixes
* improvements for refactorings and cleanups, we love to delete code.
* features for new shiny features you want in HLAPI.
If your pull request breaks any test, it has no hope of being merged.
@ -33,9 +33,9 @@ If your pull request breaks any test, it has no hope of being merged.
Start reading our code and you'll get the hang of it. We optimize for readability:
* We indent using 4 spaces (soft tabs)
* We value simplicity. The code should be easy to read and avoid magic
* We use default visual studio code formatting standard
* This is open source software. Consider the people who will read your code, and make it look nice for them. It's sort of like driving a car: Perhaps you love doing donuts when you're alone, but with passengers the goal is to make the ride as smooth as possible.
* We indent using 4 spaces (soft tabs)
* We value simplicity. The code should be easy to read and avoid magic
* We use default visual studio code formatting standard
* This is open source software. Consider the people who will read your code, and make it look nice for them. It's sort of like driving a car: Perhaps you love doing donuts when you're alone, but with passengers the goal is to make the ride as smooth as possible.
Thanks.