diff options
author | Ola x Nilsson <olani@axis.com> | 2017-09-18 17:15:18 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-09-19 21:45:40 +0300 |
commit | 307b69b69a153f9547d15c5919e2e48f0423b36a (patch) | |
tree | 4c719ed95a32a2ee128511aaf3546226ca608a67 /docs/markdown | |
parent | 1556b1bdb0c5f94f2e3f2f0ebc59c8d9afeddc1c (diff) | |
download | meson-307b69b69a153f9547d15c5919e2e48f0423b36a.zip meson-307b69b69a153f9547d15c5919e2e48f0423b36a.tar.gz meson-307b69b69a153f9547d15c5919e2e48f0423b36a.tar.bz2 |
Fix table in Compiler-properties
hotdoc requires a pipe character for the right edge
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Compiler-properties.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/markdown/Compiler-properties.md b/docs/markdown/Compiler-properties.md index 06efff3..4def628 100644 --- a/docs/markdown/Compiler-properties.md +++ b/docs/markdown/Compiler-properties.md @@ -103,12 +103,12 @@ The `result` variable encapsulates the state of the test, which can be extracted with the following methods. The `name` keyword argument works the same as with `compiles`. -| Method | Return value -| ------ | ------------ -| compiled | `True` if compilation succeeded. If `false` then all other methods return undefined values. -| returncode | The return code of the application as an integer -| stdout | Program's standard out as text. -| stderr | Program's standard error as text. +| Method | Return value | +| ------ | ------------ | +| compiled | `True` if compilation succeeded. If `false` then all other methods return undefined values. | +| returncode | The return code of the application as an integer | +| stdout | Program's standard out as text. | +| stderr | Program's standard error as text. | Here is an example usage: |