From 32e8d9059cbd18b0c01c4aeba7299ccdc28ae186 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Wed, 27 Jan 2016 13:08:26 +1030 Subject: [PATCH] moving things around --- docs/demos/exploring-pull-requests.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/demos/exploring-pull-requests.md b/docs/demos/exploring-pull-requests.md index 40059928..2ed5ab7c 100644 --- a/docs/demos/exploring-pull-requests.md +++ b/docs/demos/exploring-pull-requests.md @@ -6,10 +6,6 @@ the descriptions what the changes actually represent. file (most popular at the top). This then gives me a list of pull requests that I can review as a group. -**Code** - -I'm using the Octokit.Reactive package as this helps represent the flow than tasks. - ``` using System; using System.Collections.Generic; @@ -30,7 +26,6 @@ class Program static void Main(string[] args) { var request = new PullRequestRequest(); - var results = new Dictionary>(); // fetch all open pull requests @@ -88,3 +83,7 @@ class Program **Notes:** + +I'm using the Octokit.Reactive package as this helps represent the flow than +tasks. This code also isn't very advanced - it could be more clever, but it +works for what I needed.