Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjae committed Jan 6, 2025
1 parent 7b03f1e commit b9c9d5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/sui-framework/docs/deepbook/clob_v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -3822,7 +3822,7 @@ The latter is the corresponding depth list
<b>let</b> (price_low_, _) = <a href="critbit.md#0xdee9_critbit_min_leaf">critbit::min_leaf</a>(&pool.bids);
<b>let</b> (price_high_, _) = <a href="critbit.md#0xdee9_critbit_max_leaf">critbit::max_leaf</a>(&pool.bids);

// If price_low is greater than the higest element in the tree, we <b>return</b> empty
// If price_low is greater than the highest element in the tree, we <b>return</b> empty
<b>if</b> (price_low &gt; price_high_) {
<b>return</b> (price_vec, depth_vec)
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2008,7 +2008,7 @@ module deepbook::clob_v2 {
let (price_low_, _) = critbit::min_leaf(&pool.bids);
let (price_high_, _) = critbit::max_leaf(&pool.bids);

// If price_low is greater than the higest element in the tree, we return empty
// If price_low is greater than the highest element in the tree, we return empty
if (price_low > price_high_) {
return (price_vec, depth_vec)
};
Expand Down

0 comments on commit b9c9d5e

Please sign in to comment.