summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2023-01-09 10:26:13 -0500
committerGitHub <noreply@github.com>2023-01-09 10:26:13 -0500
commit39f1e4a13a763ee980e7ecebd9e8f4614ccc8563 (patch)
tree2527f75eda54adc49d7ed0bb4f15be5491de2c3f
parentb985b1bdada76b02b51b4f2ea3cbd985c9b8a210 (diff)
Fix typo in CUDA target docs
-rw-r--r--docs/cuda-target.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cuda-target.md b/docs/cuda-target.md
index d5affc0e9..4d90a41f3 100644
--- a/docs/cuda-target.md
+++ b/docs/cuda-target.md
@@ -28,7 +28,7 @@ The following are a work in progress or not implemented but are planned to be so
# How it works
-For producing PTX binaries Slang uses (NVRTC)[https://docs.nvidia.com/cuda/nvrtc/index.html]. NVRTC dll/shared library has to be available to Slang (for example in the appropriate PATH for example) for it to be able to produce PTX.
+For producing PTX binaries Slang uses [NVRTC](https://docs.nvidia.com/cuda/nvrtc/index.html). NVRTC dll/shared library has to be available to Slang (for example in the appropriate PATH for example) for it to be able to produce PTX.
The NVRTC compiler can be accessed directly via the pass through mechanism and is identifed by the enum value `SLANG_PASS_THROUGH_NVRTC`.