mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
Fix typos
This commit is contained in:
parent
5fee6df87a
commit
d91d734b5c
3 changed files with 6 additions and 6 deletions
|
@ -81,13 +81,13 @@ namespace data
|
|||
{
|
||||
if (bit1)
|
||||
{
|
||||
if (root->one) return; // someting wrong
|
||||
if (root->one) return; // something wrong
|
||||
root->one = new DHTNode;
|
||||
root = root->one;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (root->zero) return; // someting wrong
|
||||
if (root->zero) return; // something wrong
|
||||
root->zero = new DHTNode;
|
||||
root = root->zero;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue