INRIA/spoon
good first issue: add documentation for 3 undocumented public methods
Offen
#1.876 geöffnet am 22.02.2018
documentationgood first issue
Repository-Metriken
- Stars
- (1.933 Sterne)
- PR-Merge-Metriken
- (Durchschn. Merge 19T 11h) (49 gemergte PRs in 30 T)
Beschreibung
In Spoon, we want that all public methods are properly documented.
We have a test case to check this: https://github.com/INRIA/spoon/blob/51c4b2211922e71914f74ce4341a6232c079f174/src/test/java/spoon/test/architecture/SpoonArchitectureEnforcerTest.java#L120
This test case temporarily skips small methods.
To get this issue done:
- List the undocumented public methods:
- lower the threshold
size() > 33in the test case - run the test case, this will list you undocumented public methods
- lower the threshold
- Add appropriate Javadoc documentation
/** .... */ - Create a pull request with your changes