diff --git a/guide/spanish/algorithms/search-algorithms/binary-search/index.md b/guide/spanish/algorithms/search-algorithms/binary-search/index.md index cc408fb569..16480514eb 100644 --- a/guide/spanish/algorithms/search-algorithms/binary-search/index.md +++ b/guide/spanish/algorithms/search-algorithms/binary-search/index.md @@ -93,7 +93,7 @@ function binarySearch(arr, item, low, high) { return null; } - // Find the middle of the array. + // Encuentra el centro de la matriz. var mid = Math.ceil((low + high) / 2); if (arr[mid] === item) { // Found the item!