From 38083a2768df6f04a8e59f091daa41764e5b0079 Mon Sep 17 00:00:00 2001 From: Tyler Bui-Palsulich <26876514+tbpg@users.noreply.github.com> Date: Thu, 10 May 2018 13:44:59 -0400 Subject: [PATCH 1/4] Trigger a PR --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5f2329b..9de7a1c 100644 --- a/README.md +++ b/README.md @@ -36,3 +36,6 @@ Disclaimer ---------- This is not an official Google product. + + +Trigger a PR. From 1bbfff98c37290f1dc95467de9a2b97bb8b00f11 Mon Sep 17 00:00:00 2001 From: Tyler Bui-Palsulich <26876514+tbpg@users.noreply.github.com> Date: Thu, 10 May 2018 14:10:06 -0400 Subject: [PATCH 2/4] Another update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9de7a1c..9734ee3 100644 --- a/README.md +++ b/README.md @@ -38,4 +38,4 @@ Disclaimer This is not an official Google product. -Trigger a PR. +Trigger a PR (2). From bc9c2b62964e9854d96f3b0a4c88d9f126a63a18 Mon Sep 17 00:00:00 2001 From: Tyler Bui-Palsulich Date: Mon, 26 Feb 2018 13:28:09 -0500 Subject: [PATCH 3/4] Don't capitalize struct in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d430f31..5f2329b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ GoGraph GoGraph builds graphs out of Go source code. -GoGraph currently only works with Structs. +GoGraph currently only works with structs. Install ------- @@ -35,4 +35,4 @@ File a bug or reach out on [Twitter](http://twitter.com/tbpalsulich). Disclaimer ---------- -This is not an official Google product. \ No newline at end of file +This is not an official Google product. From 667e037f51dde9767f93e99834c51352ecb02a99 Mon Sep 17 00:00:00 2001 From: Tyler Bui-Palsulich Date: Wed, 20 Jun 2018 10:20:06 -0400 Subject: [PATCH 4/4] Needs gofmt. --- gograph.go | 1 + 1 file changed, 1 insertion(+) diff --git a/gograph.go b/gograph.go index e32db38..40b0d57 100644 --- a/gograph.go +++ b/gograph.go @@ -72,6 +72,7 @@ func (n node) Attributes() []encoding.Attribute { return []encoding.Attribute{{Key: "label", Value: n.name}} } + // This is not properly formatted. func main() { h := flag.String("http", "", "Address to listen on for server (default: no server).") t := flag.String("type", "", "Type to analyze.")