sentence capitalization

This commit is contained in:
Dmitry Avdeev
2014-12-06 11:19:41 +03:00
parent d304ec4ede
commit 1d566347e1
49 changed files with 66 additions and 68 deletions

View File

@@ -1,4 +1,4 @@
// "Add Runtime Exception(s) to Method Signature" "true"
// "Add runtime exception(s) to method signature" "true"
class a {
int f() throws RuntimeException {
throw new RuntimeException()<caret>;

View File

@@ -1,4 +1,4 @@
// "Add Runtime Exception(s) to Method Signature" "true"
// "Add runtime exception(s) to method signature" "true"
class a {
int f() {
throw new RuntimeException()<caret>;

View File

@@ -1,4 +1,4 @@
// "Add Runtime Exception(s) to Method Signature" "false"
// "Add runtime exception(s) to method signature" "false"
class a {
int f() throws RuntimeException{
throw new RuntimeException()<caret>;

View File

@@ -1,4 +1,4 @@
// "Add Runtime Exception(s) to Method Signature" "false"
// "Add runtime exception(s) to method signature" "false"
class a {
int f() {
Runnable r = () -> {