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);