@@ -14,7 +14,7 @@ from net import SslCVerifyMode, newContext
1414type
1515 Auth = object
1616 user: string
17- token: string # # Github access token
17+ token: string # # GitHub access token
1818 http: HttpClient # # http client for doing API requests
1919
2020const
@@ -34,7 +34,7 @@ proc createHeaders(a: Auth) =
3434 })
3535
3636proc requestNewToken (cfg: Config ): string =
37- display (" Info:" , " Please create a new personal access token on Github in" &
37+ display (" Info:" , " Please create a new personal access token on GitHub in" &
3838 " order to allow Nimble to fork the packages repository." ,
3939 priority = HighPriority )
4040 display (" Hint:" , " Make sure to give the access token access to public repos" &
@@ -167,7 +167,7 @@ proc publish*(p: PackageInfo, o: Options) =
167167 var pkgsDir = getNimbleUserTempDir () / " nimble-packages-fork"
168168 if not forkExists (auth):
169169 createFork (auth)
170- display (" Info:" , " Waiting 10s to let Github create a fork" ,
170+ display (" Info:" , " Waiting 10s to let GitHub create a fork" ,
171171 priority = HighPriority )
172172 os.sleep (10_000 )
173173
@@ -230,7 +230,7 @@ proc publish*(p: PackageInfo, o: Options) =
230230 " No .git nor .hg directory found. Stopping." )
231231
232232 if url.len == 0 :
233- url = promptCustom (" Github URL of " & p.basicInfo.name & " ?" , " " )
233+ url = promptCustom (" GitHub URL of " & p.basicInfo.name & " ?" , " " )
234234 if url.len == 0 : userAborted ()
235235
236236 let tags = promptCustom (
0 commit comments