Skip to content

改了几个错别字 #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ func (接收者 接受者类型)函数名称(形参列表)(返回值列表) {
- Vim(初学者入门门槛高)
- VSCode(不喜欢)
- Sublime Test(不喜欢)
- GoLand(喜欢,当收费)
- GoLand(喜欢,但收费)
- LiteIDE(开源免费, 跨平台运行,轻量级)
- 生男生女都一样, 最关键是你中意哪个就用哪个
---
Expand Down Expand Up @@ -1260,7 +1260,7 @@ int main(){

var num7 rune = 11
var num8 int32
num8 = num7 // 这里不是隐式转换, 不报错的原因是byte的本质就是int32
num8 = num7 // 这里不是隐式转换, 不报错的原因是rune的本质就是int32
fmt.Println(num8)
}
```
Expand Down