Skip to content

Commit 78b29a3

Browse files
authored
Merge branch 'master' into refactor/Pow
2 parents 532d4b0 + fb55552 commit 78b29a3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
<plugin>
108108
<groupId>org.apache.maven.plugins</groupId>
109109
<artifactId>maven-checkstyle-plugin</artifactId>
110-
<version>3.4.0</version>
110+
<version>3.5.0</version>
111111
<configuration>
112112
<configLocation>checkstyle.xml</configLocation>
113113
<consoleOutput>true</consoleOutput>

src/main/java/com/thealgorithms/maths/TwinPrime.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ private TwinPrime() {
1616
/**
1717
* This method returns twin prime of the integer value passed as argument
1818
*
19-
* @param input_number Integer value of which twin prime is to be found
19+
* @param inputNumber Integer value of which twin prime is to be found
2020
* @return (number + 2) if number and (number + 2) are prime, -1 otherwise
2121
*/
2222
static int getTwinPrime(int inputNumber) {

src/main/java/com/thealgorithms/strings/StringCompression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ private StringCompression() {
1010
/**
1111
* Returns the compressed or encoded string
1212
*
13-
* @param ch character array that contains the group of characters to be encoded
13+
* @param input character array that contains the group of characters to be encoded
1414
* @return the compressed character array as string
1515
*/
1616
public static String compress(String input) {

0 commit comments

Comments
 (0)