docs: Strangler explanation (#2969)

* fix step builder docs

* add strangler docs
This commit is contained in:
Ilkka Seppälä
2024-05-21 16:40:28 +03:00
committed by GitHub
parent 0b79e5a9b9
commit 7bf1e36e5d
4 changed files with 150 additions and 28 deletions
@@ -63,9 +63,9 @@ public class HalfArithmetic {
}
/**
* Chech if has any zero.
* Check if it has any zero.
* @param nums numbers need to check
* @return if has any zero, return true, else, return false
* @return if it has any zero, return true, else, return false
*/
public boolean ifHasZero(int... nums) {
LOGGER.info("Arithmetic check zero {}", VERSION);
@@ -60,9 +60,9 @@ public class NewArithmetic {
}
/**
* Chech if has any zero.
* Check if it has any zero.
* @param nums numbers need to check
* @return if has any zero, return true, else, return false
* @return if it has any zero, return true, else, return false
*/
public boolean ifHasZero(int... nums) {
LOGGER.info("Arithmetic check zero {}", VERSION);