From b5db95eb7f7ab8740edd8329a07acdcfeefd032b Mon Sep 17 00:00:00 2001 From: Jian Lan Date: Sat, 30 Dec 2017 13:13:12 -0700 Subject: [PATCH] Update declarations.md In the "Modifiers*" subsection there is a method definition ```foo()```, which does NOT follow a rule of this style guide. --- _style/declarations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_style/declarations.md b/_style/declarations.md index 6679fecada..dea8ee8f47 100644 --- a/_style/declarations.md +++ b/_style/declarations.md @@ -123,7 +123,7 @@ applicable): @Transaction @throws(classOf[IOException]) - override protected final def foo() { + override protected final def foo(): Unit = { ... }