mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
fix typo (#144)
This commit is contained in:
parent
4b9ab359a7
commit
d325a1d386
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ func FetchRemoteSource(remoteUrl string, localFilename string) ([]byte, error) {
|
|||
return nil, err
|
||||
}
|
||||
|
||||
// Write to to file. Need to reopen it for writing.
|
||||
// Write to local file. Need to reopen it for writing.
|
||||
file, err = os.OpenFile(localFilename, os.O_RDWR|os.O_CREATE, 0700)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
Loading…
Reference in a new issue