Skip to content

Commit fed9298

Browse files
committed
Merge branch 'ak/typofixes'
Trivial typofixes. * ak/typofixes: cbtree: fix a typo bloom: fix a typo attr: fix a typo
2 parents a4f062b + 0627c58 commit fed9298

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

attr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ static void all_attrs_init(struct attr_hashmap *map, struct attr_check *check)
187187
}
188188

189189
/*
190-
* Atribute name cannot begin with "builtin_" which
190+
* Attribute name cannot begin with "builtin_" which
191191
* is a reserved namespace for built in attributes values.
192192
*/
193193
static int attr_name_reserved(const char *name)

bloom.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ struct bloom_filter_settings {
1818

1919
/*
2020
* The number of times a path is hashed, i.e. the
21-
* number of bit positions tht cumulatively
21+
* number of bit positions that cumulatively
2222
* determine whether a path is present in the
2323
* Bloom filter.
2424
*/

cbtree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ static struct cb_node *cb_node_of(const void *p)
1212
return (struct cb_node *)((uintptr_t)p - 1);
1313
}
1414

15-
/* locate the best match, does not do a final comparision */
15+
/* locate the best match, does not do a final comparison */
1616
static struct cb_node *cb_internal_best_match(struct cb_node *p,
1717
const uint8_t *k, size_t klen)
1818
{

0 commit comments

Comments
 (0)