Corrected/changed variable names of the base64 and hex imports (instead of fmt) to correspond with the module name itself. (#375)
This commit is contained in:
parent
0afdfdeb2f
commit
f90d433d21
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Module - "base64"
|
# Module - "base64"
|
||||||
|
|
||||||
```golang
|
```golang
|
||||||
fmt := import("base64")
|
base64 := import("base64")
|
||||||
```
|
```
|
||||||
|
|
||||||
## Functions
|
## Functions
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Module - "hex"
|
# Module - "hex"
|
||||||
|
|
||||||
```golang
|
```golang
|
||||||
fmt := import("hex")
|
hex := import("hex")
|
||||||
```
|
```
|
||||||
|
|
||||||
## Functions
|
## Functions
|
||||||
|
|
Loading…
Reference in a new issue