* Adjusted indentation in license section, and used "(c)"
* Commented out invalid syntax to enable highlighting
* Removed unnecessary parentheses
This commit is contained in:
Nobuyoshi Nakada 2021-02-07 21:01:43 +09:00
Родитель 947d93b715
Коммит 478716f49a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 10 добавлений и 10 удалений

Просмотреть файл

@ -464,7 +464,7 @@ pty_close_pty(VALUE assoc)
/* /*
* call-seq: * call-seq:
* PTY.open => [master_io, slave_file] * PTY.open => [master_io, slave_file]
* PTY.open {|(master_io, slave_file)| ... } => block value * PTY.open {|master_io, slave_file| ... } => block value
* *
* Allocates a pty (pseudo-terminal). * Allocates a pty (pseudo-terminal).
* *
@ -497,7 +497,7 @@ pty_close_pty(VALUE assoc)
* require 'io/console' * require 'io/console'
* PTY.open {|m, s| * PTY.open {|m, s|
* s.raw! * s.raw!
* ... * # ...
* } * }
* *
*/ */
@ -737,16 +737,16 @@ static VALUE cPTY;
* *
* == License * == License
* *
* C) Copyright 1998 by Akinori Ito. * (c) Copyright 1998 by Akinori Ito.
* *
* This software may be redistributed freely for this purpose, in full * This software may be redistributed freely for this purpose, in full
* or in part, provided that this entire copyright notice is included * or in part, provided that this entire copyright notice is included
* on any copies of this software and applications and derivations thereof. * on any copies of this software and applications and derivations thereof.
* *
* This software is provided on an "as is" basis, without warranty of any * This software is provided on an "as is" basis, without warranty of any
* kind, either expressed or implied, as to any matter including, but not * kind, either expressed or implied, as to any matter including, but not
* limited to warranty of fitness of purpose, or merchantability, or * limited to warranty of fitness of purpose, or merchantability, or
* results obtained from use of this software. * results obtained from use of this software.
*/ */
void void