Skip to content

Commit

Permalink
[Thai] fix typo (CryptozombiesHQ#474)
Browse files Browse the repository at this point in the history
Fix typo function name _generateRandomDNA to _generateRandomDna
  • Loading branch information
notjiam authored Jan 17, 2022
1 parent b39d809 commit 277e997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion th/1/functions3.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function _multiply(uint a, uint b) private pure returns (uint) {

ตอนนี้เราต้องการฟังก์ชั่นตัวช่วยที่จะสร้างเลข DNA แบบสุ่มขึ้นมาจากข้อมูลชนิด string

1. สร้างฟังก์ชั่นชนิด `private` ขึ้นโดยใช้ชื่อว่า `_generateRandomDNA` ซึ่งฟังก์ชั่นนี้ต้องการพารามิเตอร์ชื่อว่า `_str` (เป็น `string`) และมีการรีเทิร์นค่าออกมาเป็นข้อมูลชนิด `uint`
1. สร้างฟังก์ชั่นชนิด `private` ขึ้นโดยใช้ชื่อว่า `_generateRandomDna` ซึ่งฟังก์ชั่นนี้ต้องการพารามิเตอร์ชื่อว่า `_str` (เป็น `string`) และมีการรีเทิร์นค่าออกมาเป็นข้อมูลชนิด `uint`

2. ในฟังก์ชั่นนี้จะสามารถดูตัวแปรบางตัวใน contract ของเราได้ แต่ไม่สามารถที่จะเปลี่ยนแปลงค่าอะไรใดๆ ได้ ดังนั้นฟังก์ชั่นนี้จะมีค่าเป็น `view`

Expand Down

0 comments on commit 277e997

Please sign in to comment.