Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
practicalswift authored and cdecker committed Jan 28, 2018
1 parent d36fa33 commit 9f47c04
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion channeld/channel_wire.csv
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ channel_fail_htlc,,id,u64
# If this is non-zero length, you need to wrap this and pass it on.
channel_fail_htlc,,len,u16
channel_fail_htlc,,error_pkt,len*u8
# If it errcode is != 0, it's a local error, otherwise we're passing thru.
# If it errcode is != 0, it's a local error, otherwise we're passing through.
channel_fail_htlc,,errcode,u16
# If errcode & UPDATE, this says which outgoing channel failed.
channel_fail_htlc,,which_channel,struct short_channel_id
Expand Down
4 changes: 2 additions & 2 deletions tools/check-bolt.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static char *code_to_regex(const char *code, size_t len, bool escape)
after_nl = false;
continue;
}
/* Fall thru. */
/* Fall through. */
case '.':
case '$':
case '^':
Expand All @@ -172,7 +172,7 @@ static char *code_to_regex(const char *code, size_t len, bool escape)
case '|':
if (escape)
*(p++) = '\\';
/* Fall thru */
/* Fall through */
default:
*(p++) = code[i];
}
Expand Down
4 changes: 2 additions & 2 deletions wire/test/run-peer-wire.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ static void set_pubkey(struct pubkey *key)
#define with_field(p, field) \
(upto_field((p), field) + sizeof((p)->field))

/* Equal upto this field */
/* Equal up to this field */
#define eq_upto(p1, p2, field) \
(memcmp((p1), (p2), upto_field(p1, field)) == 0)

/* Equal upto and including this field */
/* Equal up to and including this field */
#define eq_with(p1, p2, field) \
(memcmp((p1), (p2), with_field(p1, field)) == 0)

Expand Down

0 comments on commit 9f47c04

Please sign in to comment.