Skip to content

Commit 42c545e

Browse files
jagillfacebook-github-bot
authored andcommitted
docs: Fix typos in documentation (#12522)
Summary: Opening braces should have closing braces. Pull Request resolved: #12522 Reviewed By: amitkdutta Differential Revision: D70561053 Pulled By: kevinwilfong fbshipit-source-id: 0c49d8907dd76526cde613e3a996e99307bf7fa7
1 parent 6f67621 commit 42c545e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

velox/docs/develop/scalar-functions.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -410,15 +410,15 @@ function defined above can be registered using the following function call:
410410

411411
.. code-block:: c++
412412

413-
registerFunction<CeilFunction, double, double>({"ceil", "ceiling");
413+
registerFunction<CeilFunction, double, double>({"ceil", "ceiling"});
414414

415415
Here, we register the CeilFunction function that takes a double and returns a
416416
double. If we want to allow the ceil function to be called on float inputs,
417417
we need to call registerFunction again:
418418

419419
.. code-block:: c++
420420

421-
registerFunction<CeilFunction, float, float>({"ceil", "ceiling");
421+
registerFunction<CeilFunction, float, float>({"ceil", "ceiling"});
422422

423423
We need to call registerFunction for each signature we want to support.
424424

0 commit comments

Comments
 (0)