From 2cb1821295fd2144e3038bdee3b008f287adfa91 Mon Sep 17 00:00:00 2001 From: Rich Lander Date: Mon, 24 Sep 2018 10:22:29 -0400 Subject: [PATCH] Updating to more recent repo names --- docs/search.md | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/docs/search.md b/docs/search.md index a3536579ef..da259e6ca0 100644 --- a/docs/search.md +++ b/docs/search.md @@ -17,18 +17,13 @@ A common scenario is to search for issues to triage: var request = new SearchIssuesRequest(); // you can add individual repos to focus your search -request.Repos.Add("aspnet/dnx"); -request.Repos.Add("aspnet", "dnvm"); +request.Repos.Add("aspnet/home"); +request.Repos.Add("dotnet", "core"); // or use a series of repositories request.Repos = new RepositoryCollection { - "aspnet/dnx", - "aspnet/dnvm" -}; - -request.Repos = new RepositoryCollection { - { "aspnet", "dnx" }, - { "aspnet", "dnvm" } + "aspnet/home", + "dotnet/core" }; ``` @@ -59,7 +54,7 @@ request.Commenter = "haacked"; // rather than setting all these, you can use this to find // all the above for a specific user with this one-liner -request.Involves = "davidfowl"; +request.Involves = "terrajobst"; // by default this will search on open issues, set this if // you want to get all issues