Skip to content

Commit b8e676c

Browse files
committed
#451 Spell "Javadoc" consistently
1 parent d0b891d commit b8e676c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ConfigMe
22
[![Build Status](https://github.com/AuthMe/ConfigMe/actions/workflows/maven_jdk8.yml/badge.svg)](https://github.com/AuthMe/ConfigMe/actions?query=branch%3Amaster)
33
[![Coverage Status](https://coveralls.io/repos/github/AuthMe/ConfigMe/badge.svg?branch=master)](https://coveralls.io/github/AuthMe/ConfigMe?branch=master)
4-
[![Javadocs](https://www.javadoc.io/badge/ch.jalu/configme.svg)](https://www.javadoc.io/doc/ch.jalu/configme)
4+
[![Javadoc](https://www.javadoc.io/badge/ch.jalu/configme.svg)](https://www.javadoc.io/doc/ch.jalu/configme)
55
[![MegaLinter](https://github.com/AuthMe/ConfigMe/workflows/MegaLinter/badge.svg?branch=master)](https://github.com/AuthMe/ConfigMe/actions?query=workflow%3AMegaLinter+branch%3Amaster)
66

77
A simple configuration management library with YAML support out of the box.

src/main/java/ch/jalu/configme/beanmapper/Mapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import org.jetbrains.annotations.Nullable;
77

88
/**
9-
* Maps the values of a property reader to Java classes (referred to as beans). See the JavaDoc on the default
9+
* Maps the values of a property reader to Java classes (referred to as beans). See the Javadoc on the default
1010
* implementation, {@link MapperImpl}, for more details.
1111
*/
1212
public interface Mapper {

src/main/java/ch/jalu/configme/configurationdata/PropertyListBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void add(@NotNull Property<?> property) {
4646

4747
/**
4848
* Creates a list of properties that have been added, by insertion order but grouped by path parents
49-
* (see class JavaDoc).
49+
* (see class Javadoc).
5050
*
5151
* @return ordered list of registered properties
5252
*/

src/main/java/ch/jalu/configme/properties/convertresult/ConvertErrorRecorder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class ConvertErrorRecorder {
1919
private boolean hasError;
2020

2121
/**
22-
* Registers that some error occurred during the conversion of the value. See class javadoc: no need to register
22+
* Registers that some error occurred during the conversion of the value. See class Javadoc: no need to register
2323
* an error if the return value of the conversion implies there is an issue (such as returning null).
2424
*
2525
* @param reason the reason (not used in this implementation but may be extended for debugging)

0 commit comments

Comments
 (0)