Skip to content

Commit

Permalink
Update data_and_memory.md
Browse files Browse the repository at this point in the history
update tab to space
  • Loading branch information
XC-Zero authored Dec 28, 2022
1 parent af5497e commit a4161b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/chapter_data_structure/data_and_memory.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ comments: true
=== "Go"

```go title=""
var numbers =[5]int{}
var decimals =[5]float64{}
// go 里没有char ,但有 rune/byte 代替 char
var characters =[5]byte{}
var booleans =[5]bool{}
var numbers = [5]int{}
var decimals = [5]float64{}
// go 里没有char ,但有 rune/byte 用以代替 char
var characters = [5]byte{}
var booleans = [5]bool{}
```

=== "JavaScript"
Expand Down

0 comments on commit a4161b5

Please sign in to comment.