File tree 2 files changed +2
-2
lines changed
src/main/java/com/thealgorithms
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ private TwinPrime() {
16
16
/**
17
17
* This method returns twin prime of the integer value passed as argument
18
18
*
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
20
20
* @return (number + 2) if number and (number + 2) are prime, -1 otherwise
21
21
*/
22
22
static int getTwinPrime (int inputNumber ) {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ private StringCompression() {
10
10
/**
11
11
* Returns the compressed or encoded string
12
12
*
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
14
14
* @return the compressed character array as string
15
15
*/
16
16
public static String compress (String input ) {
You can’t perform that action at this time.
0 commit comments