diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2022-05-06 18:13:22 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2022-05-06 18:13:22 +0900 |
commit | 67950a4c0a884bdb78d9beb4405ebf7459229b21 (patch) | |
tree | dd2ec45802abfb5bc8a01586fbaa81d1ef0cf393 /file.c | |
parent | d79e0832a509fb24f4ccd41bfdff6638916c46e1 (diff) |
Fix missing paren [ci skip]
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1734,8 +1734,8 @@ rb_file_socket_p(VALUE obj, VALUE fname) * * Returns +true+ if +filepath+ points to a block device, +false+ otherwise: * - * File.blockdev?('/dev/sda1') # => true - * File.blockdev?(File.new('t.tmp') # => false + * File.blockdev?('/dev/sda1') # => true + * File.blockdev?(File.new('t.tmp')) # => false * */ |