Skip to content

Commit 3f8b76e

Browse files
committed
doc: rename node.1 -> iojs.1
PR-URL: nodejs#262 Reviewed-By: Bert Belder <bertbelder@gmail.com>
1 parent 73b9323 commit 3f8b76e

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ $(PKG): release-only
314314
$(TARBALL): release-only $(NODE_EXE) doc
315315
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
316316
mkdir -p $(TARNAME)/doc/api
317-
cp doc/node.1 $(TARNAME)/doc/node.1
317+
cp doc/iojs.1 $(TARNAME)/doc/iojs.1
318318
cp -r out/doc/api/* $(TARNAME)/doc/api/
319319
rm -rf $(TARNAME)/deps/v8/test # too big
320320
rm -rf $(TARNAME)/doc/images # too big

doc/node.1 renamed to doc/iojs.1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ If set to 1 then colors will not be used in the REPL.
107107
--crankshaft (use crankshaft)
108108
type: bool default: true
109109
--hydrogen_filter (optimization filter)
110-
type: string default:
110+
type: string default:
111111
--use_range (use hydrogen range analysis)
112112
type: bool default: true
113113
--eliminate_dead_phis (eliminate dead phis)
@@ -385,9 +385,9 @@ If set to 1 then colors will not be used in the REPL.
385385
--debugger_port (Port to use for remote debugging)
386386
type: int default: 5858
387387
--map_counters (Map counters to a file)
388-
type: string default:
388+
type: string default:
389389
--js_arguments (Pass all remaining arguments to the script. Alias for "--".)
390-
type: arguments default:
390+
type: arguments default:
391391
--debug_compile_events (Enable debugger compile events)
392392
type: bool default: true
393393
--debug_script_collected_events (Enable debugger script collected events)
@@ -399,7 +399,7 @@ If set to 1 then colors will not be used in the REPL.
399399
--gdbjit_dump (dump elf objects with debug info to disk)
400400
type: bool default: false
401401
--gdbjit_dump_filter (dump only objects containing this substring)
402-
type: string default:
402+
type: string default:
403403
--force_marking_deque_overflows (force overflows of marking deque by reducing its size to 64 words)
404404
type: bool default: false
405405
--stress_compaction (stress the GC compactor to flush out bugs (implies --force_marking_deque_overflows))

tools/install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ def files(action):
137137
action(['src/node.stp'], 'share/systemtap/tapset/')
138138

139139
if 'freebsd' in sys.platform or 'openbsd' in sys.platform:
140-
action(['doc/node.1'], 'man/man1/')
140+
action(['doc/iojs.1'], 'man/man1/')
141141
else:
142-
action(['doc/node.1'], 'share/man/man1/')
142+
action(['doc/iojs.1'], 'share/man/man1/')
143143

144144
if 'true' == variables.get('node_install_npm'): npm_files(action)
145145

0 commit comments

Comments
 (0)