Update PULL_REQUEST_TEMPLATE.md

This commit is contained in:
Matthew Leibowitz 2018-12-24 01:43:52 +02:00 коммит произвёл GitHub
Родитель 9069950c1e
Коммит 6a76d4d818
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 13 добавлений и 3 удалений

16
.github/PULL_REQUEST_TEMPLATE.md поставляемый
Просмотреть файл

@ -14,12 +14,22 @@ List all API changes here (or just put None), example:
Added:
- string - string Class.Property { get; set; }
- void Class.Method();
- `string Class.Property { get; set; }`
- `void Class.Method();`
Changed:
- object Cell.OldPropertyName => object Cell.NewPropertyName
- `object Cell.OldPropertyName` => `object Cell.NewPropertyName`
If there is an entirely new API, then you can use a more verbose style:
```csharp
public static class NewClass {
public static int SomeProperty { get; set; }
public static void SomeMethod(string value);
}
```
### Behavioral Changes ###