Add magic newlines to markdown files.

Change-Id: I225ecab48a7d3d0a04390c5535cf5b65709fd758
Reviewed-on: https://chromium-review.googlesource.com/311072
Reviewed-by: Shannon Woods <shannonwoods@chromium.org>
Tested-by: Shannon Woods <shannonwoods@chromium.org>
This commit is contained in:
Shannon Woods
2015-11-05 15:54:51 -05:00
parent c5d2136aae
commit 21f76c200c
5 changed files with 13 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ Items marked {DEV} indicate a deviation from the Google guidelines. Items marked
Use the following guidelines, they do deviate somewhat from the Google
guidelines.
* class and type names: start with capital letter and use CamelCase.
* {DEV} class member variables: use an **`m`** prefix instead of trailing
underscore and use CamelCase.
@@ -78,6 +79,7 @@ use CamelCase (chosen for consistency)
* {DO} read and follow Google's recommendations.
* Each file **must** start with the following boilerplate notice:
```
//
// Copyright (c) 2002-2011 The ANGLE Project Authors. All rights reserved.
@@ -108,6 +110,7 @@ use CamelCase (chosen for consistency)
line.
Examples:
```
if (conditional)
{
@@ -118,6 +121,7 @@ else
otherstuff()
}
```
```
switch (conditional)
{
@@ -131,6 +135,7 @@ switch (conditional)
WTFBBQ();
}
```
```
class MyClass : public Foo
{
@@ -141,6 +146,7 @@ class MyClass : public Foo
DISALLOW_COPY_AND_ASSIGN(MyClass);
};
```
```
char *c;
const string &str;