From be6940f765e6afb260bf2dac1c61572b33e1ddff Mon Sep 17 00:00:00 2001 From: Steve Randles Date: Thu, 5 Mar 2015 15:57:23 -0500 Subject: [PATCH] Update getting-started.md just noticed a small issue with the code listed --- docs/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index 0f0afb39..d76fa074 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -50,7 +50,7 @@ Once you've got that setup, the simplest thing to experiment with is fetching de ``` var user = await client.User.Get("shiftkey"); -Console.WriteLine("{0} has {1} public repositories - go check out their profile at {1}", +Console.WriteLine("{0} has {1} public repositories - go check out their profile at {2}", user.Name, user.PublicRepos, user.Url); @@ -60,4 +60,4 @@ If you've authenticated as a given user, you can query their details directly: ``` var user = await client.User.Current(); -``` \ No newline at end of file +```