Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
akansha1812 committed Sep 24, 2024
1 parent fc4a0b4 commit d6e9e6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/dataflux/range_splitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ func newRangeSplitter(alphabet string) (*rangeSplitter, error) {
// the algorithm assumes it to be sequence of smallest possible character and empty
// end range as sequence of highest possible characters.
//
// For example, sorted alphabet {"a","b","c","d"}
// For example, sorted alphabet = {"a","b","c","d"}
// Input: startRange= "d", endRange= "", numSplits=2
//
// This will be converted from base-N to base-10 integers.
// While calculating base-10 integer, "a" will be appended to startRange
// and "d" will be appended to endRange until the difference between integers it
// and "d" will be appended to endRange until the difference between integers is
// more than number of splits.
// startInteger for "da" = 12, endInteger for "dd" = 15
//
Expand Down

0 comments on commit d6e9e6e

Please sign in to comment.