refactor: fix typo (#5363)

This commit is contained in:
Alex Klymenko
2024-08-23 09:58:08 +02:00
committed by GitHub
parent 56f97c48ac
commit fb55552ebb
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ public final class TwinPrime {
/**
* This method returns twin prime of the integer value passed as argument
*
* @param input_number Integer value of which twin prime is to be found
* @param inputNumber Integer value of which twin prime is to be found
* @return (number + 2) if number and (number + 2) are prime, -1 otherwise
*/
static int getTwinPrime(int inputNumber) {