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

ruby-changes:28683

From: akr <ko1@a...>
Date: Tue, 14 May 2013 20:35:59 +0900 (JST)
Subject: [ruby-changes:28683] akr:r40735 (trunk): Update doc.

akr	2013-05-14 20:35:50 +0900 (Tue, 14 May 2013)

  New Revision: 40735

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40735

  Log:
    Update doc.

  Modified files:
    trunk/ext/socket/ifaddr.c

Index: ext/socket/ifaddr.c
===================================================================
--- ext/socket/ifaddr.c	(revision 40734)
+++ ext/socket/ifaddr.c	(revision 40735)
@@ -115,9 +115,9 @@ rsock_getifaddrs(void) https://github.com/ruby/ruby/blob/trunk/ext/socket/ifaddr.c#L115
 
 /*
  * call-seq:
- *   getifaddr.name => string
+ *   ifaddr.name => string
  *
- * Returns the interface name of _getifaddr_.
+ * Returns the interface name of _ifaddr_.
  */
 
 static VALUE
@@ -130,9 +130,9 @@ ifaddr_name(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/socket/ifaddr.c#L130
 
 /*
  * call-seq:
- *   getifaddr.ifindex => integer
+ *   ifaddr.ifindex => integer
  *
- * Returns the interface index of _getifaddr_.
+ * Returns the interface index of _ifaddr_.
  */
 
 static VALUE
@@ -149,9 +149,9 @@ ifaddr_ifindex(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/socket/ifaddr.c#L149
 
 /*
  * call-seq:
- *   getifaddr.flags => integer
+ *   ifaddr.flags => integer
  *
- * Returns the flags of _getifaddr_.
+ * Returns the flags of _ifaddr_.
  */
 
 static VALUE
@@ -164,10 +164,10 @@ ifaddr_flags(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/socket/ifaddr.c#L164
 
 /*
  * call-seq:
- *   getifaddr.addr => addrinfo
+ *   ifaddr.addr => addrinfo
  *
- * Returns the address of _getifaddr_.
- * nil is returned if address is not available in _getifaddr_.
+ * Returns the address of _ifaddr_.
+ * nil is returned if address is not available in _ifaddr_.
  */
 
 static VALUE
@@ -182,10 +182,10 @@ ifaddr_addr(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/socket/ifaddr.c#L182
 
 /*
  * call-seq:
- *   getifaddr.netmask => addrinfo
+ *   ifaddr.netmask => addrinfo
  *
- * Returns the netmask address of _getifaddr_.
- * nil is returned if netmask is not available in _getifaddr_.
+ * Returns the netmask address of _ifaddr_.
+ * nil is returned if netmask is not available in _ifaddr_.
  */
 
 static VALUE
@@ -200,9 +200,9 @@ ifaddr_netmask(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/socket/ifaddr.c#L200
 
 /*
  * call-seq:
- *   getifaddr.broadaddr => addrinfo
+ *   ifaddr.broadaddr => addrinfo
  *
- * Returns the broadcast address of _getifaddr_.
+ * Returns the broadcast address of _ifaddr_.
  * nil is returned if the flags doesn't have IFF_BROADCAST.
  */
 
@@ -218,9 +218,9 @@ ifaddr_broadaddr(VALUE self) https://github.com/ruby/ruby/blob/trunk/ext/socket/ifaddr.c#L218
 
 /*
  * call-seq:
- *   getifaddr.dstaddr => addrinfo
+ *   ifaddr.dstaddr => addrinfo
  *
- * Returns the destination address of _getifaddr_.
+ * Returns the destination address of _ifaddr_.
  * nil is returned if the flags doesn't have IFF_POINTOPOINT.
  */
 
@@ -305,9 +305,9 @@ ifaddr_inspect_flags(unsigned int flags, https://github.com/ruby/ruby/blob/trunk/ext/socket/ifaddr.c#L305
 
 /*
  * call-seq:
- *   getifaddr.inspect => string
+ *   ifaddr.inspect => string
  *
- * Returns a string to show contents of _getifaddr_.
+ * Returns a string to show contents of _ifaddr_.
  */
 
 static VALUE

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

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