summaryrefslogtreecommitdiff
path: root/docs/user-guide/a1-02-slangpy.md
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-03-31 08:56:03 -0700
committerGitHub <noreply@github.com>2023-03-31 08:56:03 -0700
commit3ce11c3a2b5f747cbfbcf625c77dc9d5eecd09cd (patch)
tree98e3042ead93c0115e90365019774a9676a9692f /docs/user-guide/a1-02-slangpy.md
parent6a2bf87be816233b17844af7b7d7a9593dc03404 (diff)
Fix typos in user-guide. (#2762)
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'docs/user-guide/a1-02-slangpy.md')
-rw-r--r--docs/user-guide/a1-02-slangpy.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user-guide/a1-02-slangpy.md b/docs/user-guide/a1-02-slangpy.md
index 8ee5233ba..7c652228e 100644
--- a/docs/user-guide/a1-02-slangpy.md
+++ b/docs/user-guide/a1-02-slangpy.md
@@ -126,7 +126,7 @@ float square(float x)
```
This is done by simply adding a `[BackwardDifferentiable]` attribute to our `square`function.
-With that, we can now define `square_bwd_kernel` that performance backward propagation as:
+With that, we can now define `square_bwd_kernel` that performs backward propagation as:
```csharp
[CudaKernel]