Fix typo in unicode_encode documentation.

PiperOrigin-RevId: 239697033
This commit is contained in:
A. Unique TensorFlower 2019-03-21 16:26:00 -07:00 committed by TensorFlower Gardener
parent 2c7c321153
commit 93a7be53a9

View File

@ -63,7 +63,7 @@ def unicode_encode(input,
#### Example:
```python
>>> input = [[71, 246, 246, 100, 110, 105, 103, 104, 116], [128522]]
>>> unicode_encode(input, 'UTF8')
>>> unicode_encode(input, 'UTF-8')
['G\xc3\xb6\xc3\xb6dnight', '\xf0\x9f\x98\x8a']
```
"""