From 178d56699a35400bac1c19bb030fc9de03af2a3a Mon Sep 17 00:00:00 2001 From: David Majda Date: Fri, 28 Nov 2014 13:56:47 +0100 Subject: [PATCH] Update GitHub project URLs See https://groups.google.com/d/msg/pegjs/4a6zWKQSG6U/n8Pm257Lz6wJ. I didn't update CHANGELOG.md as I consider issue URLs there historical artifacts ;-) --- README.md | 6 +++--- package.json | 2 +- spec/api/generated-parser-behavior.spec.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8580b00..068e0b4 100644 --- a/README.md +++ b/README.md @@ -427,10 +427,10 @@ Development ----------- * [Project website](http://pegjs.majda.cz/) - * [Wiki](https://github.com/dmajda/pegjs/wiki) - * [Source code](https://github.com/dmajda/pegjs) + * [Wiki](https://github.com/pegjs/pegjs/wiki) + * [Source code](https://github.com/pegjs/pegjs) * [Trello board](https://trello.com/board/peg-js/50a8eba48cf95d4957006b01) - * [Issue tracker](https://github.com/dmajda/pegjs/issues) + * [Issue tracker](https://github.com/pegjs/pegjs/issues) * [Google Group](http://groups.google.com/group/pegjs) * [Twitter](http://twitter.com/peg_js) diff --git a/package.json b/package.json index df5e10a..b2b7a0e 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ }, "repository": { "type": "git", - "url": "http://github.com/dmajda/pegjs.git" + "url": "http://github.com/pegjs/pegjs.git" }, "devDependencies": { "jasmine-node": "= 1.11.0", diff --git a/spec/api/generated-parser-behavior.spec.js b/spec/api/generated-parser-behavior.spec.js index 1a809bc..8d8c90b 100644 --- a/spec/api/generated-parser-behavior.spec.js +++ b/spec/api/generated-parser-behavior.spec.js @@ -856,7 +856,7 @@ describe("generated parser behavior", function() { * duplicates. This is why the following test uses three choices * instead of seemingly sufficient two. * - * See https://github.com/dmajda/pegjs/pull/146. + * See https://github.com/pegjs/pegjs/pull/146. */ var parser = PEG.buildParser('start = "a" / "a" / "a"', options);