1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00
This commit is contained in:
Symphony 2018-06-09 17:36:55 +08:00 committed by Ryan Dahl
parent 4b9ab359a7
commit d325a1d386

View file

@ -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