Skip to content

Commit e46a450

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#41 from chwarr/fix-popen-indent
Fix odd indentation in _popen/_wpopen
2 parents 86db281 + 4989357 commit e46a450

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

docs/c-runtime-library/reference/popen-wpopen.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,15 @@ Creates a pipe and executes a command.
6969
7070
## Syntax
7171

72-
```
73-
74-
FILE *_popen(
75-
const char *command,
76-
const char *mode
77-
);
78-
FILE *_wpopen(
79-
const wchar_t *command,
80-
const wchar_t *mode
81-
);
72+
```
73+
FILE *_popen(
74+
const char *command,
75+
const char *mode
76+
);
77+
FILE *_wpopen(
78+
const wchar_t *command,
79+
const wchar_t *mode
80+
);
8281
```
8382

8483
#### Parameters
@@ -194,4 +193,4 @@ Process returned 0
194193
## See Also
195194
[Process and Environment Control](../../c-runtime-library/process-and-environment-control.md)
196195
[_pclose](../../c-runtime-library/reference/pclose.md)
197-
[_pipe](../../c-runtime-library/reference/pipe.md)
196+
[_pipe](../../c-runtime-library/reference/pipe.md)

0 commit comments

Comments
 (0)