summaryrefslogtreecommitdiffstats
path: root/docs/codingstyle.html
diff options
context:
space:
mode:
authorErik Faye-Lund <[email protected]>2019-06-06 10:11:31 +0200
committerErik Faye-Lund <[email protected]>2019-06-06 17:51:45 +0000
commitf3235cfa707cc19ffd67d198849219025dd88cfe (patch)
tree042ab4727d36e804e59b05614c7cebe698894849 /docs/codingstyle.html
parent205f960e08d7b13ea529782e0e744c657bf1771f (diff)
docs: fixup code-tag positioning
This reads better if we include the asterisk in the code-block, as it's part of the function-reference, even though it's not technically speaking code. But as the <code>-tag isn't purely for code, this should be fine. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'docs/codingstyle.html')
-rw-r--r--docs/codingstyle.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/codingstyle.html b/docs/codingstyle.html
index 1b296630e3d..686d6a3ddf4 100644
--- a/docs/codingstyle.html
+++ b/docs/codingstyle.html
@@ -132,7 +132,7 @@ should prefer the use of <code>bool</code>, <code>true</code>, and
<code>false</code> over <code>GLboolean</code>, <code>GL_TRUE</code>, and
<code>GL_FALSE</code>. In C code, this may mean that
<code>#include &lt;stdbool.h&gt;</code> needs to be added. The
-<code>try_emit_</code>* methods in <code>src/mesa/program/ir_to_mesa.cpp</code>
+<code>try_emit_*</code> methods in <code>src/mesa/program/ir_to_mesa.cpp</code>
and <code>src/mesa/state_tracker/st_glsl_to_tgsi.cpp</code> can serve as
examples.