Skip to content

Commit e500ccc

Browse files
authored
Update src/content/developers/tutorials/deploying-your-first-smart-contract/index.md
1 parent efdfea8 commit e500ccc

File tree

1 file changed

+1
-1
lines changed
  • src/content/developers/tutorials/deploying-your-first-smart-contract

1 file changed

+1
-1
lines changed

src/content/developers/tutorials/deploying-your-first-smart-contract/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If you’re used to programing you can easily guess what this program does. Here
5252
- Line 10: The first function will modify the state of the contract and `increment()` our variable `count`.
5353
- Line 15: The second function is just a getter to be able to read the value of the `count` variable outside of the smart contract. Note that, as we defined our `count` variable as public this is not necessary but is shown as an example.
5454

55-
This is all for our first simple smart contract. As you may know, it looks like a class from OOP languages (Object-Oriented Programming) like Java or C++. It’s now time to play with our contract.
55+
This is all for our first simple smart contract. As you may know, it looks like a class from OOP (Object-Oriented Programming) languages like Java or C++. It’s now time to play with our contract.
5656

5757
## Deploying our contract {#deploying-our-contract}
5858

0 commit comments

Comments
 (0)