From 93a7be53a9c314b1e4dc35fc97d5be8367e8fc01 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 21 Mar 2019 16:26:00 -0700 Subject: [PATCH] Fix typo in `unicode_encode` documentation. PiperOrigin-RevId: 239697033 --- tensorflow/python/ops/ragged/ragged_string_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/ops/ragged/ragged_string_ops.py b/tensorflow/python/ops/ragged/ragged_string_ops.py index 4b22c23d0b0..c8f59afd04d 100644 --- a/tensorflow/python/ops/ragged/ragged_string_ops.py +++ b/tensorflow/python/ops/ragged/ragged_string_ops.py @@ -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'] ``` """