From 852f7f8bf182326d7027d0e7d254146c193c5789 Mon Sep 17 00:00:00 2001 From: gammazero Date: Tue, 20 Apr 2021 00:29:38 -0700 Subject: [PATCH] Fix comment --- migration.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/migration.go b/migration.go index e55734f..24e92f7 100644 --- a/migration.go +++ b/migration.go @@ -9,9 +9,9 @@ var DefaultMigrationDownloadSources = []string{"HTTPS", "IPFS"} // Migration configures how migrations are downloaded and if the downloads are // added to IPFS locally type Migration struct { - // Sources in order of preference where "HTTPS" means our gateways and - // "IPFS" means over IPFS. Any other values are interpretes as hostnames - // for custom gateways. An empty list means "do the default thing" + // Sources in order of preference, where "IPFS" means use IPFS and "HTTPS" + // means use default gateways. Any other values are interpreted as + // hostnames for custom gateways. Empty list means "use default sources". DownloadSources []string // Whether or not to keep the migration after downloading it. // Options are "discard", "cache", "pin". Empty string for default.