aboutsummaryrefslogtreecommitdiffstats
path: root/doc/shell.rd.ja
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-23 00:13:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-09-23 00:13:32 +0000
commit1a65cef0f03fc9250cd5f2de3ce1ac4f79cfdb7a (patch)
tree97f5ae3620fde9905edd5ffd59e3294a9132d9b1 /doc/shell.rd.ja
parentcfdd8cda26aaf848a287396b01c2581ccc8b0178 (diff)
downloadruby-1a65cef0f03fc9250cd5f2de3ce1ac4f79cfdb7a.tar.gz
doc: remove trailing spaces
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47689 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc/shell.rd.ja')
-rw-r--r--doc/shell.rd.ja8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/shell.rd.ja b/doc/shell.rd.ja
index 053b11fb99..a9507fe92a 100644
--- a/doc/shell.rd.ja
+++ b/doc/shell.rd.ja
@@ -47,7 +47,7 @@ OS上のコマンドを実行するにはまず, Shellのメソッドとして
--- Shell.def_system_command(command, path = command)
- Shellのメソッドとしてcommandを登録します.
+ Shellのメソッドとしてcommandを登録します.
例)
Shell.def_system_command "ls"
@@ -62,7 +62,7 @@ OS上のコマンドを実行するにはまず, Shellのメソッドとして
--- Shell.alias_command(ali, command, *opts) {...}
- commandのaliasをします.
+ commandのaliasをします.
例)
Shell.alias_command "lsC", "ls", "-CBF", "--show-control-chars"
@@ -139,7 +139,7 @@ OS上のコマンドを実行するにはまず, Shellのメソッドとして
--- Shell#test(command, file1, file2)
--- Shell#[command, file1, file2]
- ファイルテスト関数testと同じ.
+ ファイルテスト関数testと同じ.
例)
sh[?e, "foo"]
sh[:e, "foo"]
@@ -185,7 +185,7 @@ OS上のコマンドを実行するにはまず, Shellのメソッドとして
--- Shell#glob(patten)
--- Shell#tee(file)
- これらは実行すると, それらを内容とするFilterオブジェクトを返します.
+ これらは実行すると, それらを内容とするFilterオブジェクトを返します.
--- Filter#each &block