From c70f8bd7074b8708c25365b77cec17144082d986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20K=C3=B6rber?= Date: Tue, 27 Mar 2018 22:12:33 +0200 Subject: [PATCH] Typo fix --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3223c01b..6b1c9e93 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,7 +21,7 @@ Our style guide bases on [Oracle's Code conventions for the Java Programming Lan * Remove trailing spaces. * Line length is 90 characters. You may exceed this length by a few characters if it is easier to read than a wrapped line. * `if`, `for` and `while` statements always use blocks, even for a single statement. -* All types and methods must have a descriptive JavaDoc, except of `@Override` annotated methods. For plain getter and setter methods, `@param` and '@return' can be omitted. +* All types and methods must have a descriptive JavaDoc, except of `@Override` annotated methods. For plain getter and setter methods, `@param` and `@return` can be omitted. ## Unit Tests