Skip to content

Commit b123c0a

Browse files
MarkDaoustcopybara-github
authored andcommitted
Fix broken quotes.
PiperOrigin-RevId: 446496649
1 parent 0da8693 commit b123c0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/en/community/contribute/docs_ref.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ TensorFlow uses a few customizations to the builtin doctest logic:
100100

101101
```
102102
def NewLayer():
103-
“””This layer does cool stuff.
103+
"""This layer does cool stuff.
104104
105105
Example usage:
106106
107107
>>> x = tf.random.normal((1, 28, 28, 3))
108108
>>> new_layer = NewLayer(x)
109109
>>> new_layer
110110
<tf.Tensor: shape=(1, 14, 14, 3), dtype=int32, numpy=...>
111-
“””
111+
"""
112112
```
113113
114114
* *Floating point values*: The TensorFlow doctest extracts float values from

0 commit comments

Comments
 (0)