Skip to content

Commit d24aa10

Browse files
authored
fix typos
1 parent 8045d6d commit d24aa10

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/develop/smart-contracts/tokensale.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ contract Tokensale {
7171
_rate = rate;
7272
_supply = supply;
7373
74-
// fundamental mechanic of dapps working with tip3 - deploy it's own wallet to operate with. check tip3 specs for more info
74+
// fundamental mechanic of dapps working with tip3 - deploy its own wallet to operate with. check tip3 specs for more info
7575
ITokenRoot(distributedTokenRoot).deployWallet {
7676
value: 0.2 ever,
7777
flag: 1,
@@ -157,7 +157,7 @@ That's all. When we deploy the `Tokensale` contract, `deployWallet` will be call
157157
ITokenWallet(_distributedTokenWallet).transfer{ value: 0, flag: 128 }(
158158
purchase,
159159
msg.sender,
160-
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be payed by user)
160+
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be paid by user)
161161
msg.sender,
162162
false,
163163
empty
@@ -177,7 +177,7 @@ The next mechanic is already familiar to you. Tokensale just calls its own deplo
177177
ITokenWallet(_distributedTokenWallet).transfer{ value: 0, flag: 128 }(
178178
purchase,
179179
msg.sender,
180-
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be payed by user)
180+
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be paid by user)
181181
msg.sender,
182182
false,
183183
empty
@@ -220,7 +220,7 @@ contract Tokensale {
220220
_rate = rate;
221221
_supply = supply;
222222
223-
// fundamental mechanic of dapps working with tip3 - deploy it's own wallet to operate with. check tip3 specs for more info
223+
// fundamental mechanic of dapps working with tip3 - deploy its own wallet to operate with. check tip3 specs for more info
224224
ITokenRoot(distributedTokenRoot).deployWallet {
225225
value: 0.2 ever,
226226
flag: 1,
@@ -259,7 +259,7 @@ contract Tokensale {
259259
ITokenWallet(_distributedTokenWallet).transfer{ value: 0, flag: 128 }(
260260
purchase,
261261
msg.sender,
262-
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be payed by user)
262+
0.1 ever, // this parameter allows to deploy wallet for user, if it's not deployed yet. (fee takes from message so will be paid by user)
263263
msg.sender,
264264
false,
265265
empty
@@ -270,4 +270,4 @@ contract Tokensale {
270270
}
271271
```
272272

273-
All you need now is to write some tests with locklift support. There are some simple tests and deploy scripts available in the following [repo](https://github.com/venom-blockchain/guides/tree/master/tokensale-contracts).
273+
All you need now is to write some tests with locklift support. There are some simple tests and deploy scripts available in the following [repo](https://github.com/venom-blockchain/guides/tree/master/tokensale-contracts).

0 commit comments

Comments
 (0)