diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e903ed7941..84ceac8f9d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,7 @@ Contributing ============ -The following is a set of guidelines for contributing to AssemblyScript and its packages, which are hosted in the [AsssemblyScript Organization](https://github.com/AssemblyScript) on GitHub. These are mostly guidelines, not rules. Use your best judgement, and feel free to proposse changes to this document in a pull request. +The following is a set of guidelines for contributing to AssemblyScript and its packages, which are hosted in the [AsssemblyScript Organization](https://github.com/AssemblyScript) on GitHub. These are mostly guidelines, not rules. Use your best judgement, and feel free to propose changes to this document in a pull request. Code of Conduct --------------- diff --git a/NOTICE b/NOTICE index 061349e4aa..412968222a 100644 --- a/NOTICE +++ b/NOTICE @@ -38,6 +38,7 @@ under the licensing terms detailed in LICENSE: * yjhmelody * bnbarak * Colin Eberhardt +* Ryan Pivovar Portions of this software are derived from third-party works licensed under the following terms: diff --git a/bin/asinit b/bin/asinit index 57bc75d9f0..17f9a34d7c 100755 --- a/bin/asinit +++ b/bin/asinit @@ -408,7 +408,7 @@ function ensureTestsIndexJs() { fs.writeFileSync(testsIndexFile, [ "const assert = require(\"assert\");", "const myModule = require(\"..\");", - "assert.equal(myModule.add(1, 2), 3);", + "assert.strictEqual(myModule.add(1, 2), 3);", "console.log(\"ok\");" ].join("\n") + "\n"); console.log(colors.green(" Created: ") + testsIndexFile);