summaryrefslogtreecommitdiffstats
path: root/docs/gpu-feature/texture
diff options
context:
space:
mode:
authorcheneym2 <acheney@nvidia.com>2024-04-16 22:02:45 -0400
committerGitHub <noreply@github.com>2024-04-16 19:02:45 -0700
commit67313584d6879d68db53ced3108c2370bed5e8c1 (patch)
tree202f64210053d12a8ca2c6a2a22b000c020443eb /docs/gpu-feature/texture
parent282da4ac94d60d3244f4d72085e66fb82cf5abd8 (diff)
Fix Slang documentation typos (#3961)
Diffstat (limited to 'docs/gpu-feature/texture')
-rw-r--r--docs/gpu-feature/texture/footprint-queries.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/gpu-feature/texture/footprint-queries.md b/docs/gpu-feature/texture/footprint-queries.md
index 3d0fef2d3..b47a95262 100644
--- a/docs/gpu-feature/texture/footprint-queries.md
+++ b/docs/gpu-feature/texture/footprint-queries.md
@@ -48,7 +48,7 @@ To query the footprint that would be accessed by this operation, we can use an o
```hlsl
uint granularity = ...;
-TextureFootprint2D footprint = texure.queryFootprintCoarse(granularity,
+TextureFootprint2D footprint = texture.queryFootprintCoarse(granularity,
sampler, coords);
```