From 386cde116278bb234c2bcd068d5ef7fc0e5dd941 Mon Sep 17 00:00:00 2001 From: CODe <71spates.bravest@icloud.com> Date: Mon, 3 Feb 2025 17:43:13 +0100 Subject: [PATCH 1/3] Fix typos in Build AI Dating Coach Using NextJS and OpenAI/3. Building the App/10. Streaming Responses.md --- .../3. Building the App/10. Streaming Responses.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build AI Dating Coach Using NextJS and OpenAI/3. Building the App/10. Streaming Responses.md b/Build AI Dating Coach Using NextJS and OpenAI/3. Building the App/10. Streaming Responses.md index d2fa336c..1b78490e 100644 --- a/Build AI Dating Coach Using NextJS and OpenAI/3. Building the App/10. Streaming Responses.md +++ b/Build AI Dating Coach Using NextJS and OpenAI/3. Building the App/10. Streaming Responses.md @@ -219,7 +219,7 @@ Make sure you are in the `dating-ai-bot-app` folder. Remember to push your code ```solidity git add . -git commit -m "the dating ai coach app is successfuly working" +git commit -m "the dating ai coach app is successfully working" git push ``` From 7048087c63d2233404f25ffabc86ba91a56112db Mon Sep 17 00:00:00 2001 From: CODe <71spates.bravest@icloud.com> Date: Mon, 3 Feb 2025 17:43:14 +0100 Subject: [PATCH 2/3] =?UTF-8?q?Fix=20typos=20in=20Build=20Hogwarts=20Sorti?= =?UTF-8?q?ng=20Cap=20dApp=20on=20the=20Polygon=20Mumbai/4.=20Add=20dApp?= =?UTF-8?q?=E2=80=99s=20Frontend/3.=20Dive=20Deep=20Into=20the=20Code.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../3. Dive Deep Into the Code.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/Build Hogwarts Sorting Cap dApp on the Polygon Mumbai/4. Add dApp\342\200\231s Frontend/3. Dive Deep Into the Code.md" "b/Build Hogwarts Sorting Cap dApp on the Polygon Mumbai/4. Add dApp\342\200\231s Frontend/3. Dive Deep Into the Code.md" index cd72557f..1357277b 100644 --- "a/Build Hogwarts Sorting Cap dApp on the Polygon Mumbai/4. Add dApp\342\200\231s Frontend/3. Dive Deep Into the Code.md" +++ "b/Build Hogwarts Sorting Cap dApp on the Polygon Mumbai/4. Add dApp\342\200\231s Frontend/3. Dive Deep Into the Code.md" @@ -9,7 +9,7 @@ First, let’s code the component which will handle the MetaMask connection and Now, in the `App()` function, under the loading messages constants (`const`), we created in the last lesson paste these two `useEffects()`: ``` -// To intialize metamask and connect with the smart contract +// To initialize metamask and connect with the smart contract useEffect(() => { if (started) { if (window.ethereum) { From f488e76251d6138cd50c953bab499e843a77e94b Mon Sep 17 00:00:00 2001 From: CODe <71spates.bravest@icloud.com> Date: Mon, 3 Feb 2025 17:43:16 +0100 Subject: [PATCH 3/3] Fix typos in Build on Move on Sui and Explore its Applications/7. Objects in Move on Sui/1. Basics of Objects in Move on Sui.md --- .../1. Basics of Objects in Move on Sui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build on Move on Sui and Explore its Applications/7. Objects in Move on Sui/1. Basics of Objects in Move on Sui.md b/Build on Move on Sui and Explore its Applications/7. Objects in Move on Sui/1. Basics of Objects in Move on Sui.md index af5d530e..cd4603c5 100644 --- a/Build on Move on Sui and Explore its Applications/7. Objects in Move on Sui/1. Basics of Objects in Move on Sui.md +++ b/Build on Move on Sui and Explore its Applications/7. Objects in Move on Sui/1. Basics of Objects in Move on Sui.md @@ -97,7 +97,7 @@ So, to obtain the current transaction signer we call something like this: `tx_co } } - // create function is used to call the constrcutor function and + // create function is used to call the constructor function and // transfer the ownership of the object and make it public using // `transfer` module and function. public entry fun create(red: u8, green: u8, blue: u8, ctx: &mut TxContext){