From e41d4ae793386847739416ca57604ea543da178c Mon Sep 17 00:00:00 2001 From: John Dagdelen Date: Mon, 10 May 2021 11:25:54 -0700 Subject: [PATCH] Update README.md Fixing typo in README.md. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 796fa55..28e541e 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ import jax.numpy as jnp # Define a three node graph, each node has an integer as its feature. node_features = jnp.array([[0.], [1.], [2.]]) -# We will construct a graph fro which there is a directed edge between each node +# We will construct a graph from which there is a directed edge between each node # and its successor. We define this with `senders` (source nodes) and `receivers` # (destination nodes). senders = jnp.array([0, 1, 2])