diff options
author | teor <teor@torproject.org> | 2020-04-04 15:05:34 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2020-04-04 15:05:34 +1000 |
commit | 1e75974362e2bdbbd2402f5fd6a9aeda4b2a8a38 (patch) | |
tree | 611d9ab250437d273ce4356b9543f46d9cd94728 /src/core | |
parent | a84fd949ed2deaf0f526569bc5e4c75270d35e41 (diff) | |
download | tor-1e75974362e2bdbbd2402f5fd6a9aeda4b2a8a38.tar.gz tor-1e75974362e2bdbbd2402f5fd6a9aeda4b2a8a38.zip |
core/or: Fix a comment typo in onion.h
Comment-only change.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/or/onion.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/or/onion.h b/src/core/or/onion.h index ff3083f374..717854e639 100644 --- a/src/core/or/onion.h +++ b/src/core/or/onion.h @@ -56,8 +56,8 @@ typedef struct extend_cell_t { /** Ed25519 public identity key. Zero if not set. */ struct ed25519_public_key_t ed_pubkey; /** The "create cell" embedded in this extend cell. Note that unlike the - * create cells we generate ourself, this once can have a handshake type we - * don't recognize. */ + * create cells we generate ourselves, this create cell can have a handshake + * type we don't recognize. */ create_cell_t create_cell; } extend_cell_t; |