summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-03-15 11:12:15 -0700
committerGitHub <noreply@github.com>2023-03-15 11:12:15 -0700
commit38e62199cc75ce34608491c8dd299eb330bde518 (patch)
tree6440376cb8dfebe00d1f13bd8f3c132d42758c72 /docs
parentbf308241b54ae9c421a29aa5620da9fb3ec15245 (diff)
Update 07-autodiff.md
Diffstat (limited to 'docs')
-rw-r--r--docs/user-guide/07-autodiff.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user-guide/07-autodiff.md b/docs/user-guide/07-autodiff.md
index 5d3877830..caa29aa35 100644
--- a/docs/user-guide/07-autodiff.md
+++ b/docs/user-guide/07-autodiff.md
@@ -204,7 +204,7 @@ struct MyRayDifferential
float3 d_dir;
}
-struct MyRay : IDifferential
+struct MyRay : IDifferentiable
{
// Specify that `MyRay.Differential` is `MyRayDifferential`.
typealias Differential = MyRayDifferential;