fix up debugger display so that the string format is around the right way

This commit is contained in:
Amy Palamountain
2014-03-24 14:45:28 +13:00
parent 428e6a50fb
commit 79711c50e2
+1 -1
View File
@@ -43,7 +43,7 @@ namespace Octokit
get
{
return String.Format(CultureInfo.InvariantCulture,
"Repository: Id: {0} Owner: {1}, Name: {2}", Id, Name, Owner);
"Repository: Id: {0} Owner: {1}, Name: {2}", Id, Owner, Name);
}
}
}