Skip to content

Commit 95d7c0b

Browse files
committed
fix typos
1 parent b80b40b commit 95d7c0b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
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

0 commit comments

Comments
 (0)