From 95d7c0bbdeb8d749449467ba5b24bc78bb1ff28d Mon Sep 17 00:00:00 2001 From: tanatana Date: Tue, 31 Mar 2015 12:07:41 +0900 Subject: [PATCH 1/2] fix typos --- public/stage5/tests.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/stage5/tests.js b/public/stage5/tests.js index 8cb4d5ca..06344c20 100644 --- a/public/stage5/tests.js +++ b/public/stage5/tests.js @@ -126,21 +126,21 @@ describe('ステージ5(意図通りに非同期処理を利用できる)', return expect(mixiOrg).to.eventually.have.property('id', 1089312); // Github API に関する参考情報 - // https://developer.github.com/v3/repos/ + // https://developer.github.com/v3/orgs }); it('Github API を使って、mixi-inc/JavaScriptTraining の情報を取得できる', function() { - var repositry = 'mixi-inc/JavaScriptTraining'; + var repository = 'mixi-inc/JavaScriptTraining'; // 作成した promise を mixiRepo 変数に代入してください。 var mixiRepo = 'change me!'; - return expect(mixiRepo).to.eventually.have.property('full_name', repositry); + return expect(mixiRepo).to.eventually.have.property('full_name', repository); // Github API に関する参考情報 - // https://developer.github.com/v3/orgs + // https://developer.github.com/v3/repos/ }); From c8cf5fd2e77ad761cc3a7414ae08c15b324858ba Mon Sep 17 00:00:00 2001 From: tanatana Date: Tue, 31 Mar 2015 12:48:05 +0900 Subject: [PATCH 2/2] fix a comment positioning --- public/stage7/tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/stage7/tests.js b/public/stage7/tests.js index 20c102c8..0276df98 100644 --- a/public/stage7/tests.js +++ b/public/stage7/tests.js @@ -152,7 +152,7 @@ describe.skip('闇', function() { it('暗黙のキャスト', function() { - expect(+'10' === '10').to.equal()/* ここに値を書き込んでください */; + expect(+'10' === '10').to.equal(/* ここに値を書き込んでください */); expect(10 === (10 + '')).to.equal(/* ここに値を書き込んでください */); });