stop using the word 'just'

Everywhere. In documentation and code comments.

It is almost never a good word and almost always a filler that should be
avoided.

Closes #20793
This commit is contained in:
Daniel Stenberg 2026-03-02 23:41:35 +01:00
parent 4b583b7585
commit b4dba346cd
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
213 changed files with 727 additions and 772 deletions

View file

@ -241,7 +241,7 @@ int Curl_splayremove(struct Curl_tree *t,
to remove, as otherwise we might be trying to remove a node that
is not actually in the tree.
We cannot just compare the keys here as a double remove in quick
We cannot compare the keys here as a double remove in quick
succession of a node with key != SPLAY_SUBNODE && same != NULL
could return the same key but a different node. */
DEBUGASSERT(t == removenode);
@ -252,7 +252,7 @@ int Curl_splayremove(struct Curl_tree *t,
remove the root node of a list of nodes with identical keys. */
x = t->samen;
if(x != t) {
/* 'x' is the new root node, we just make it use the root node's
/* 'x' is the new root node, we make it use the root node's
smaller/larger links */
x->key = t->key;