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

ruby-changes:73862

From: Nobuyoshi <ko1@a...>
Date: Wed, 5 Oct 2022 19:44:39 +0900 (JST)
Subject: [ruby-changes:73862] 139e79e5a9 (master): [DOC] Remove unknown markup or macro [ci skip]

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

From 139e79e5a90f8ab50c4f2bdd4c977c64474e529d Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Wed, 5 Oct 2022 19:35:36 +0900
Subject: [DOC] Remove unknown markup or macro [ci skip]

Also remove the ancient word "Windows NT".
---
 file.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/file.c b/file.c
index 0746e66092..5e23bc98f3 100644
--- a/file.c
+++ b/file.c
@@ -4900,7 +4900,7 @@ rb_file_dirname_n(VALUE fname, int n) https://github.com/ruby/ruby/blob/trunk/file.c#L4900
  *   dotfile       top       0
  *   end with dot  dot       1
  *   .ext          dot       len of .ext
- *   .ext:stream   dot       len of .ext without :stream (NT only)
+ *   .ext:stream   dot       len of .ext without :stream (NTFS only)
  *
  */
 const char *
@@ -5377,8 +5377,7 @@ test_check(int n, int argc, VALUE *argv) https://github.com/ruby/ruby/blob/trunk/file.c#L5377
  *    "d"  | boolean | True if file1 exists and is a directory
  *    "e"  | boolean | True if file1 exists
  *    "f"  | boolean | True if file1 exists and is a regular file
- *    "g"  | boolean | True if file1 has the \CF{setgid} bit
- *         |         | set (false under NT)
+ *    "g"  | boolean | True if file1 has the setgid bit set
  *    "G"  | boolean | True if file1 exists and has a group
  *         |         | ownership equal to the caller's group
  *    "k"  | boolean | True if file1 exists and has the sticky bit set
@@ -5809,7 +5808,7 @@ rb_stat_rowned(VALUE obj) https://github.com/ruby/ruby/blob/trunk/file.c#L5808
  *     stat.grpowned?   -> true or false
  *
  *  Returns true if the effective group id of the process is the same as
- *  the group id of <i>stat</i>. On Windows NT, returns <code>false</code>.
+ *  the group id of <i>stat</i>. On Windows, returns <code>false</code>.
  *
  *     File.stat("testfile").grpowned?      #=> true
  *     File.stat("/etc/passwd").grpowned?   #=> false
-- 
cgit v1.2.1


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

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