Skip to content

Commit 0779f8a

Browse files
committed
Correcting a typo
1 parent 6537a00 commit 0779f8a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ScripturNum.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ public function getLongString(): string
172172

173173

174174
/**
175-
* Get a string. Publically-accessible.
175+
* Get a string. Publicly-accessible.
176176
*
177177
* @since 2.0.0
178178
*
@@ -662,8 +662,8 @@ public static function stringToInts(string $string, &$exceptions = false): array
662662
protected static function validateRefNums(int $book, &$startCh, &$startV, &$endCh, &$endV)
663663
{
664664
$book--;
665-
if ($startCh > count(Bible::getVerseCounts()[$book]) || $endCh > count(
666-
Bible::getVerseCounts()[$book]
665+
if ($startCh > count(Bible::getVerseCounts()[$book]) ||
666+
$endCh > count(Bible::getVerseCounts()[$book]
667667
)) { // invalid request OR request for a single-chapter book.
668668
if (Bible::bookHasSingleChapter($book) && $startV === null && $endV === null) { // single-chapter book.
669669
$startV = $startCh;

0 commit comments

Comments
 (0)