Skip to content

Commit e4a2aa7

Browse files
Fix typo in binary_info description (earlephilhower#788)
1 parent fc86203 commit e4a2aa7

File tree

1 file changed

+1
-1
lines changed
  • src/common/pico_binary_info/include/pico/binary_info

1 file changed

+1
-1
lines changed

src/common/pico_binary_info/include/pico/binary_info/code.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ static const struct _binary_info_named_group __bi_lineno_var_name = { \
131131
#define bi_pin_range_with_func(plo, phi, func) __bi_encoded_pins_with_func(BI_PINS_ENCODING_RANGE | ((func << 3)) | ((plo) << 7) | ((phi) << 12))
132132

133133
#define bi_pin_mask_with_name(pmask, label) __bi_pins_with_name((pmask), (label))
134-
// names are sperated by | ... i.e. "name1|name2|name3"
134+
// names are separated by | ... i.e. "name1|name2|name3"
135135
#define bi_pin_mask_with_names(pmask, label) __bi_pins_with_name((pmask), (label))
136136
#define bi_1pin_with_name(p0, name) bi_pin_mask_with_name(1u << (p0), name)
137137
#define bi_2pins_with_names(p0, name0, p1, name1) bi_pin_mask_with_names((1u << (p0)) | (1u << (p1)), name0 "|" name1)

0 commit comments

Comments
 (0)