From 1a2a2d727a9b20f81f0e490a17d7f170a4210073 Mon Sep 17 00:00:00 2001 From: Graph Learning Team Date: Mon, 6 Feb 2023 21:37:09 -0800 Subject: [PATCH] Internal change PiperOrigin-RevId: 507672288 --- tensorflow_gnn/docs/api_docs/python/tfgnn/EdgeSet.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tensorflow_gnn/docs/api_docs/python/tfgnn/EdgeSet.md b/tensorflow_gnn/docs/api_docs/python/tfgnn/EdgeSet.md index b5dab508..51e71e22 100644 --- a/tensorflow_gnn/docs/api_docs/python/tfgnn/EdgeSet.md +++ b/tensorflow_gnn/docs/api_docs/python/tfgnn/EdgeSet.md @@ -148,8 +148,7 @@ Constructs a new instance from edge set fields. tfgnn.EdgeSet.from_fields( sizes=tf.constant([3]), adjacency=tfgnn.Adjacency.from_indices( - source=("paper", [1, 2, 2]), - target=("paper", [0, 0, 1]))) + source=("paper", [1, 2, 2]), target=("paper", [0, 0, 1]))) ``` #### Example 2: