Skip to content

Commit 21e2ee4

Browse files
committed
Merge pull request mixi-inc#19 from tanatana/2015
fix typos
2 parents b80b40b + c8cf5fd commit 21e2ee4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

public/stage5/tests.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,21 +126,21 @@ describe('ステージ5(意図通りに非同期処理を利用できる)',
126126
return expect(mixiOrg).to.eventually.have.property('id', 1089312);
127127

128128
// Github API に関する参考情報
129-
// https://developer.github.com/v3/repos/
129+
// https://developer.github.com/v3/orgs
130130
});
131131

132132

133133
it('Github API を使って、mixi-inc/JavaScriptTraining の情報を取得できる', function() {
134-
var repositry = 'mixi-inc/JavaScriptTraining';
134+
var repository = 'mixi-inc/JavaScriptTraining';
135135

136136
// 作成した promise を mixiRepo 変数に代入してください。
137137
var mixiRepo = 'change me!';
138138

139139

140-
return expect(mixiRepo).to.eventually.have.property('full_name', repositry);
140+
return expect(mixiRepo).to.eventually.have.property('full_name', repository);
141141

142142
// Github API に関する参考情報
143-
// https://developer.github.com/v3/orgs
143+
// https://developer.github.com/v3/repos/
144144
});
145145

146146

public/stage7/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ describe.skip('闇', function() {
152152

153153

154154
it('暗黙のキャスト', function() {
155-
expect(+'10' === '10').to.equal()/* ここに値を書き込んでください */;
155+
expect(+'10' === '10').to.equal(/* ここに値を書き込んでください */);
156156

157157
expect(10 === (10 + '')).to.equal(/* ここに値を書き込んでください */);
158158
});

0 commit comments

Comments
 (0)