PR #21175: [DOC] Fix a mistype.

Imported from GitHub PR https://github.com/openxla/xla/pull/21175

Copybara import of the project:

--
caaf17448ae8dade929d728852093ec82384337b by Ilia Sergachev <isergachev@nvidia.com>:

[DOC] Fix a mistype.

Merging this change closes #21175

PiperOrigin-RevId: 713594132
This commit is contained in:
Ilia Sergachev
2025-01-09 02:17:07 -08:00
committed by TensorFlower Gardener
parent 4d3e63f000
commit 49d396c843

View File

@@ -33,7 +33,7 @@ end to end examples of integrating custom calls and XLA FFI with JAX.
XLA FFI binding is a compile-time specification of the custom call signature:
custom call arguments, attributes and their types, and additional parameters
passed via the execution context (i.e., gpu stream for GPU backend). XLA FFI
finding can be bound to any C++ callable (function pointer, lambda, etc.) with
binding can be bound to any C++ callable (function pointer, lambda, etc.) with
compatible `operator()` signature. Constructed handler decodes XLA FFI call
frame (defined by the stable C API), type check all parameters, and forward
decoded results to the user-defined callback.