Skip to content

Commit 57be09c

Browse files
authored
Merge pull request #16769 from KosiChinaza/fix/smart-contracts-grammer-style
docs: fix grammar and style issues in smart contract anatomy page
2 parents 5cb8474 + 9fe1834 commit 57be09c

File tree

1 file changed

+6
-6
lines changed
  • public/content/developers/docs/smart-contracts/anatomy

1 file changed

+6
-6
lines changed

public/content/developers/docs/smart-contracts/anatomy/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ contract SimpleStorage {
3131
storedData: int128
3232
```
3333

34-
If you've already programmed object-oriented languages, you'll likely be familiar with most types. However `address` should be new to you if you're new to Ethereum development.
34+
If you've already programmed object-oriented languages, you'll likely be familiar with most types. However, `address` should be new to you if you're new to Ethereum development.
3535

3636
An `address` type can hold an Ethereum address which equates to 20 bytes or 160 bits. It returns in hexadecimal notation with a leading 0x.
3737

@@ -41,11 +41,11 @@ Other types include:
4141
- integer
4242
- fixed point numbers
4343
- fixed-size byte arrays
44-
- dynamically-sized byte arrays
45-
- Rational and integer literals
46-
- String literals
47-
- Hexadecimal literals
48-
- Enums
44+
- dynamically sized byte arrays
45+
- rational and integer literals
46+
- string literals
47+
- hexadecimal literals
48+
- enums
4949

5050
For more explanation, take a look at the docs:
5151

0 commit comments

Comments
 (0)