Skip to content

Commit

Permalink
chore: correct typos docs (#1368)
Browse files Browse the repository at this point in the history
* Update introduction-to-remix.md

* Update deployment-in-remix.md

* Update DesktopNav.tsx
  • Loading branch information
sky-coderay authored Dec 12, 2024
1 parent c5405ad commit 34c3fb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Click the chevron to expand your contract in the Deployed Contracts section of t

![Function Buttons](../../assets/images/introduction-to-solidity/remix-contract-buttons.png)

Let's click the retrieve button first. Before clicking, make a prediction: given that the `number` variable was instantiated without a value, what do you thing the return will be?
Let's click the retrieve button first. Before clicking, make a prediction: given that the `number` variable was instantiated without a value, what do you think the return will be?

Go ahead and click – the result will appear below the button as:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The editor pane loads with the Remix home screen, which contains news, helpful l

![Remix Editor](../../assets/images/introduction-to-solidity/editor-pane.png)

You'll edit your code in the editor pane. It also has most of the features you're expecting, such as syntax and error highlighting. Note that in Remix, errors are not underlines. Instead, you'll see an❗to the left of the line number where the error is present.
You'll edit your code in the editor pane. It also has most of the features you're expecting, such as syntax and error highlighting. Note that in Remix, errors are not underlined. Instead, you'll see an❗to the left of the line number where the error is present.

At the top, you'll see a large green arrow similar to the _Run_ button in other editors. In Solidity, this compiles your code, but it does not run it because you must first deploy your code to the simulated blockchain.

Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/src/components/Nav/DesktopNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function IconLink({

function DesktopNav({ color }: DesktopNavProps) {
return (
<div className="hidden h-full w-fit flex-grow flex-row items-center justify-between lg:flex">
<div className="hidden h-full w-fit flex-grow items-center justify-between lg:flex">
<Dropdown label="Ecosystem" color={color}>
<DropdownLink href="https://base.org/ecosystem" label="Apps" color={color} />
<DropdownLink
Expand Down

0 comments on commit 34c3fb1

Please sign in to comment.