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 ``` 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) { 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){