Skip to content

Commit adcc15c

Browse files
committed
fix some module references in the docs
1 parent f7ef8f6 commit adcc15c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

doc/specs/stdlib_system.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Additionally, a callback function can be specified to execute upon process compl
2424

2525
### Syntax
2626

27-
`process = ` [[stdlib_subprocess(module):run(interface)]] `(args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload])`
27+
`process = ` [[stdlib_system(module):run(interface)]] `(args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload])`
2828

2929
### Arguments
3030

@@ -69,7 +69,7 @@ Additionally, a callback function can be specified to execute upon process compl
6969

7070
### Syntax
7171

72-
`process = ` [[stdlib_subprocess(module):runasync(interface)]] `(args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload])`
72+
`process = ` [[stdlib_system(module):runasync(interface)]] `(args [, stdin] [, want_stdout] [, want_stderr] [, callback] [, payload])`
7373

7474
### Arguments
7575

@@ -108,7 +108,7 @@ This is useful for monitoring the status of asynchronous processes created with
108108

109109
### Syntax
110110

111-
`status = ` [[stdlib_subprocess(module):is_running(interface)]] `(process)`
111+
`status = ` [[stdlib_system(module):is_running(interface)]] `(process)`
112112

113113
### Arguments
114114

@@ -139,7 +139,7 @@ This is useful for determining whether asynchronous processes created with the `
139139

140140
### Syntax
141141

142-
`status = ` [[stdlib_subprocess(module):is_completed(interface)]] `(process)`
142+
`status = ` [[stdlib_system(module):is_completed(interface)]] `(process)`
143143

144144
### Arguments
145145

@@ -174,7 +174,7 @@ The result is a real value representing the elapsed time in seconds, measured fr
174174

175175
### Syntax
176176

177-
`delta_t = ` [[stdlib_subprocess(module):elapsed(subroutine)]] `(process)`
177+
`delta_t = ` [[stdlib_system(module):elapsed(subroutine)]] `(process)`
178178

179179
### Arguments
180180

@@ -212,7 +212,7 @@ in case of process hang or delay.
212212

213213
### Syntax
214214

215-
`call ` [[stdlib_subprocess(module):wait(subroutine)]] `(process [, max_wait_time])`
215+
`call ` [[stdlib_system(module):wait(subroutine)]] `(process [, max_wait_time])`
216216

217217
### Arguments
218218

@@ -243,7 +243,7 @@ This is especially useful for monitoring asynchronous processes and retrieving t
243243

244244
### Syntax
245245

246-
`call ` [[stdlib_subprocess(module):update(subroutine)]] `(process)`
246+
`call ` [[stdlib_system(module):update(subroutine)]] `(process)`
247247

248248
### Arguments
249249

@@ -269,7 +269,7 @@ This interface is useful when a process needs to be forcefully stopped, for exam
269269

270270
### Syntax
271271

272-
`call ` [[stdlib_subprocess(module):kill(subroutine)]] `(process, success)`
272+
`call ` [[stdlib_system(module):kill(subroutine)]] `(process, success)`
273273

274274
### Arguments
275275

@@ -431,7 +431,7 @@ It is designed to work across multiple platforms. On Windows, paths with both fo
431431

432432
### Syntax
433433

434-
`result = [[stdlib_io(module):is_directory(function)]] (path)`
434+
`result = [[stdlib_system(module):is_directory(function)]] (path)`
435435

436436
### Class
437437

@@ -506,7 +506,7 @@ The function provides an optional error-handling mechanism via the `state_type`
506506

507507
### Syntax
508508

509-
`call [[stdlib_fs(module):delete_file(subroutine)]] (path [, err])`
509+
`call [[stdlib_system(module):delete_file(subroutine)]] (path [, err])`
510510

511511
### Class
512512
Subroutine

0 commit comments

Comments
 (0)