diff options
author | liberforce <liberforce@freeside.fr> | 2017-05-11 00:24:37 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-05-11 22:39:03 +0300 |
commit | b15f0a0fc1562a1233e896b2e769d7ded0203bf9 (patch) | |
tree | 561b8d8a4dfda185235de469596da7670efc5311 /docs | |
parent | 99c103898831f2517c86ab852c172dd9580f0a78 (diff) | |
download | meson-b15f0a0fc1562a1233e896b2e769d7ded0203bf9.zip meson-b15f0a0fc1562a1233e896b2e769d7ded0203bf9.tar.gz meson-b15f0a0fc1562a1233e896b2e769d7ded0203bf9.tar.bz2 |
Update Compiler-properties.md
Fix table formatting
Diffstat (limited to 'docs')
-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 50615a1..c33d917 100644 --- a/docs/markdown/Compiler-properties.md +++ b/docs/markdown/Compiler-properties.md @@ -97,12 +97,12 @@ result = compiler.run(code, name : 'basic check') 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: |