From c23ace0b756a45c1692d0ea9a1b6832ffe684305 Mon Sep 17 00:00:00 2001
From: Noisy <125606576+donatik27@users.noreply.github.com>
Date: Fri, 6 Dec 2024 18:02:00 +0100
Subject: [PATCH] docs: Updates and Syntax Corrections (#2396)

---
 README.md                  | 2 +-
 docs/userguides/compile.md | 2 +-
 docs/userguides/scripts.md | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 341080d989..25d23faeaa 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ If you want to get started now, see the [Quickstart](#quickstart) section.
 
 Read our [technical documentation](https://docs.apeworx.io/ape/stable/) to get a deeper understanding of our open source Framework.
 
-Read our [academic platform](https://academy.apeworx.io/) will help you master Ape Framework with tutorials and challenges.
+Read our [academic platform](https://academy.apeworx.io/) which will help you master Ape Framework with tutorials and challenges.
 
 ## Prerequisite
 
diff --git a/docs/userguides/compile.md b/docs/userguides/compile.md
index 93665ef33e..8b1616bf86 100644
--- a/docs/userguides/compile.md
+++ b/docs/userguides/compile.md
@@ -121,7 +121,7 @@ vyper = compilers.get_compiler("vyper", settings=settings["vyper"])
 vyper.compile([Path("path/to/contract.vy")])
 
 solidity = compilers.get_compiler("solidity", settings=settings["solidity"])
-vyper.compile([Path("path/to/contract.sol")])
+solidity.compile([Path("path/to/contract.sol")])
 ```
 
 ## Compile Source Code
diff --git a/docs/userguides/scripts.md b/docs/userguides/scripts.md
index 9733aa1a78..07bcf76467 100644
--- a/docs/userguides/scripts.md
+++ b/docs/userguides/scripts.md
@@ -138,7 +138,7 @@ Suppose the name of the script is `foobar`, you can run it via:
 ape run foobar
 ```
 
-Without specifying `--network`, the script with connect to your default network.
+Without specifying `--network`, the script will connect to your default network.
 Else, specify the network using the `--network` flag:
 
 ```shell