Skip to content

Commit bdd8ca1

Browse files
committed
prettier
1 parent 22d2f8d commit bdd8ca1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/library-user-guide/adding-udfs.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ The challenge however is that DataFusion doesn't know about this function. We ne
7676

7777
### Registering a Scalar UDF
7878

79-
To register a Scalar UDF, you need to wrap the function implementation in a [`ScalarUDF`] struct and then register it with the `SessionContext`.
80-
DataFusion provides the [`create_udf`] and helper functions to make this easier.
79+
To register a Scalar UDF, you need to wrap the function implementation in a [`ScalarUDF`] struct and then register it with the `SessionContext`.
80+
DataFusion provides the [`create_udf`] and helper functions to make this easier.
8181

8282
```rust
8383
use datafusion::logical_expr::{Volatility, create_udf};
@@ -94,7 +94,7 @@ let udf = create_udf(
9494
);
9595
```
9696

97-
[`ScalarUDF`]: https://docs.rs/datafusion/latest/datafusion/logical_expr/struct.ScalarUDF.html
97+
[`scalarudf`]: https://docs.rs/datafusion/latest/datafusion/logical_expr/struct.ScalarUDF.html
9898
[`create_udf`]: https://docs.rs/datafusion/latest/datafusion/logical_expr/fn.create_udf.html
9999
[`make_scalar_function`]: https://docs.rs/datafusion/latest/datafusion/physical_expr/functions/fn.make_scalar_function.html
100100

0 commit comments

Comments
 (0)