diff --git a/markdown/solana/TRANSFER_TOKEN.md b/markdown/solana/TRANSFER_TOKEN.md index a2792bb2..592b8084 100644 --- a/markdown/solana/TRANSFER_TOKEN.md +++ b/markdown/solana/TRANSFER_TOKEN.md @@ -13,7 +13,7 @@ In `pages/api/solana/transfer.ts` finish implementing the `transfer()` function. **Take a few minutes to figure this out.** ```typescript -//.. let's snip the beginning as it should be familiar for you by now! +//.. let's skip the beginning as it should be familiar for you by now! // Find the parameter to pass const instructions = SystemProgram.transfer; @@ -42,7 +42,7 @@ Still not sure how to do this? No problem! The solution is below so you don't ge ```typescript // solution -//... let's snip the beginning as it should be familiar for you by now! +//... let's skip the beginning as it should be familiar for you by now! const instructions = SystemProgram.transfer({ fromPubkey, toPubkey, diff --git a/markdown/the_graph/GRAPH_NODE.md b/markdown/the_graph/GRAPH_NODE.md index 3e5c7c87..58c4af07 100644 --- a/markdown/the_graph/GRAPH_NODE.md +++ b/markdown/the_graph/GRAPH_NODE.md @@ -36,7 +36,7 @@ Attaching to docker_postgres_1, docker_ipfs_1, docker_graph-node_1 ## ✅ Make sure it works -The same way that a local web server usually listens for connections on `localhost://3000`, our local Graph node is listening for connections on `localhost://8020`. +The same way that a local web server usually listens for connections on `localhost:3000`, our local Graph node is listening for connections on `localhost:8020`. Click on the button **Test local Graph node** to make sure it's running!