From b04d296d971fcfe2376c940e86641443a848a36d Mon Sep 17 00:00:00 2001 From: Krzysztof Ostrowski Date: Mon, 25 Mar 2019 14:03:30 -0700 Subject: [PATCH] Fixes apidoc before the release. PiperOrigin-RevId: 240213390 --- docs/api_docs/python/tff/federated_apply.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/api_docs/python/tff/federated_apply.md b/docs/api_docs/python/tff/federated_apply.md index aabd37046a..13bcbb5ed8 100644 --- a/docs/api_docs/python/tff/federated_apply.md +++ b/docs/api_docs/python/tff/federated_apply.md @@ -7,7 +7,7 @@ ```python tff.federated_apply( - func, + fn, arg ) ``` @@ -20,7 +20,7 @@ Applies a given function to a federated value on the #### Args: -* `func`: A function to apply to the member content of `arg` on the +* `fn`: A function to apply to the member content of `arg` on the tff.SERVER. The parameter of this function must be of the same type as the member constituent of `arg`. * `arg`: A value of a TFF federated type placed at the @@ -30,8 +30,7 @@ Applies a given function to a federated value on the #### Returns: A federated value on the tff.SERVER -that represents the result of applying `func` to the member constituent of -`arg`. +that represents the result of applying `fn` to the member constituent of `arg`. #### Raises: