Skip to content
Snippets Groups Projects
Commit ba0158a5 authored by Scott Wegner's avatar Scott Wegner Committed by tensorflow-copybara
Browse files

Fix typo: integeres -> integers

PiperOrigin-RevId: 275073766
parent 78ab7696
No related branches found
No related tags found
No related merge requests found
......@@ -252,7 +252,7 @@ public API:
```python
@tff.tf_computation(tff.SequenceType(tf.int32))
def add_up_integeres(x):
def add_up_integers(x):
return x.reduce(np.int32(0), lambda x, y: x + y)
```
......@@ -298,7 +298,7 @@ public API:
For example:
* `add_up_integeres(x)` represents an invocation of the TensorFlow
* `add_up_integers(x)` represents an invocation of the TensorFlow
computation defined earlier on an argument `x`. The type of this
expression is `int32`.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment