Fix typos

This commit is contained in:
Dimitris Apostolou 2023-03-24 22:15:47 +02:00
parent 5fee6df87a
commit bff5b8df7a
No known key found for this signature in database
GPG key ID: 4B5D20E938204A8A
3 changed files with 6 additions and 6 deletions

View file

@ -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;
}