mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
Fix typos
This commit is contained in:
committed by
R4SAS
parent
5fee6df87a
commit
d91d734b5c
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user