[前][次][番号順一覧][スレッド一覧]

ruby-changes:58239

From: Kazuhiro <ko1@a...>
Date: Mon, 14 Oct 2019 17:30:35 +0900 (JST)
Subject: [ruby-changes:58239] ede1a3dc11 (master): Fix typos [ci skip]

https://git.ruby-lang.org/ruby.git/commit/?id=ede1a3dc11

From ede1a3dc110d3cfc094ce4cd5b27f92cab8b7b6c Mon Sep 17 00:00:00 2001
From: Kazuhiro NISHIYAMA <zn@m...>
Date: Mon, 14 Oct 2019 17:30:04 +0900
Subject: Fix typos [ci skip]


diff --git a/ccan/list/list.h b/ccan/list/list.h
index 59ab45e..7d21930 100644
--- a/ccan/list/list.h
+++ b/ccan/list/list.h
@@ -654,7 +654,7 @@ static inline void list_prepend_list_(struct list_head *to, https://github.com/ruby/ruby/blob/trunk/ccan/list/list.h#L654
 /**
  * list_for_each_off - iterate through a list of memory regions.
  * @h: the list_head
- * @i: the pointer to a memory region wich contains list node data.
+ * @i: the pointer to a memory region which contains list node data.
  * @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
@@ -686,7 +686,7 @@ static inline void list_prepend_list_(struct list_head *to, https://github.com/ruby/ruby/blob/trunk/ccan/list/list.h#L686
 /**
  * list_for_each_rev_off - iterate through a list of memory regions backwards
  * @h: the list_head
- * @i: the pointer to a memory region wich contains list node data.
+ * @i: the pointer to a memory region which contains list node data.
  * @off: offset(relative to @i) at which list node data resides.
  *
  * See list_for_each_off for details
@@ -698,7 +698,7 @@ static inline void list_prepend_list_(struct list_head *to, https://github.com/ruby/ruby/blob/trunk/ccan/list/list.h#L698
  * list_for_each_safe_off - iterate through a list of memory regions, maybe
  * during deletion
  * @h: the list_head
- * @i: the pointer to a memory region wich contains list node data.
+ * @i: the pointer to a memory region which contains list node data.
  * @nxt: the structure containing the list_node
  * @off: offset(relative to @i) at which list node data resides.
  *
@@ -717,7 +717,7 @@ static inline void list_prepend_list_(struct list_head *to, https://github.com/ruby/ruby/blob/trunk/ccan/list/list.h#L717
  * list_for_each_rev_safe_off - iterate backwards through a list of
  * memory regions, maybe during deletion
  * @h: the list_head
- * @i: the pointer to a memory region wich contains list node data.
+ * @i: the pointer to a memory region which contains list node data.
  * @nxt: the structure containing the list_node
  * @off: offset(relative to @i) at which list node data resides.
  *
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]