diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2015-02-19 14:47:39 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2015-02-24 11:28:31 -0500 |
commit | 339ef2e1d30be0c0477851afef3f2f53f6b469a5 (patch) | |
tree | ec2da16d67d3698bbd7112eb2741bf9e0a9c5323 /docs/Linking_overview.md | |
parent | ea4e74185ee014e09767158b06ac8f96bd0f8b5f (diff) | |
download | qemu-seabios-339ef2e1d30be0c0477851afef3f2f53f6b469a5.tar.gz |
docs: Prefer triple backticks to multiple lines with single backticks
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Linking_overview.md')
-rw-r--r-- | docs/Linking_overview.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/Linking_overview.md b/docs/Linking_overview.md index fb938b6..965e926 100644 --- a/docs/Linking_overview.md +++ b/docs/Linking_overview.md @@ -95,8 +95,10 @@ a corresponding symbol definitions in the linker script that points to the C code of the specified mode. This is typically seen with code like: -`extern void _cfunc32flat_process_op(void);`\ -`return call32(_cfunc32flat_process_op, 0, 0);` +``` +extern void _cfunc32flat_process_op(void); +return call32(_cfunc32flat_process_op, 0, 0); +``` In the above example, when the build finds the symbol "\_cfunc32flat_process_op" it will emit that symbol with the physical |