aboutsummaryrefslogtreecommitdiffstats
path: root/docs/shading.html
diff options
context:
space:
mode:
authorErik Faye-Lund <[email protected]>2020-01-16 20:18:07 +0100
committerErik Faye-Lund <[email protected]>2020-01-18 11:39:18 +0100
commit9954120b38e5dcff54bb73b0f0a56f158e050f35 (patch)
tree2d9c33b1b01689f351dfb4a09458ecc107565b10 /docs/shading.html
parentc8718627443cd8cfde0b6969f6a2f1d9e6deb88b (diff)
docs: remove leading spaces
There's no good reason to have leading space in these pre-formatted blocks. It looks strange, so let's get rid of it. Reviewed-by: Eric Engestrom <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3443>
Diffstat (limited to 'docs/shading.html')
-rw-r--r--docs/shading.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/shading.html b/docs/shading.html
index 839a61a0361..e36bab49c58 100644
--- a/docs/shading.html
+++ b/docs/shading.html
@@ -162,11 +162,11 @@ These issues will be addressed/resolved in the future.
<li>Use the built-in library functions whenever possible.
For example, instead of writing this:
<pre>
- float x = 1.0 / sqrt(y);
+float x = 1.0 / sqrt(y);
</pre>
Write this:
<pre>
- float x = inversesqrt(y);
+float x = inversesqrt(y);
</pre>
</li>
</ul>