summaryrefslogtreecommitdiff
path: root/ccan
diff options
context:
space:
mode:
authorwonda-tea-coffee <rikita.ishikawa@crowdworks.co.jp>2021-04-25 13:48:50 +0900
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2021-04-25 19:46:00 +1200
commitad108e63e35d571de5cdd195b4bb9b36dd4ad013 (patch)
treed743601ec0b0d0ef640e77494b8471c5cdf27cb8 /ccan
parente71bc56efe899a49af0b062f6beb8bfbd4063216 (diff)
[Doc] Fix a typo s/oher/other/
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4407
Diffstat (limited to 'ccan')
-rw-r--r--ccan/list/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ccan/list/list.h b/ccan/list/list.h
index 7d219307bc..c434ad8106 100644
--- a/ccan/list/list.h
+++ b/ccan/list/list.h
@@ -658,7 +658,7 @@ static inline void list_prepend_list_(struct list_head *to,
* @off: offset(relative to @i) at which list node data resides.
*
* This is a low-level wrapper to iterate @i over the entire list, used to
- * implement all oher, more high-level, for-each constructs. It's a for loop,
+ * implement all other, more high-level, for-each constructs. It's a for loop,
* so you can break and continue as normal.
*
* WARNING! Being the low-level macro that it is, this wrapper doesn't know