@@ -1010,7 +1010,7 @@ describe('q', function() {
1010
1010
} ) ;
1011
1011
1012
1012
1013
- it ( 'should call the errback after the orignal promise is rejected' ,
1013
+ it ( 'should call the errback after the original promise is rejected' ,
1014
1014
function ( ) {
1015
1015
q . when ( deferred . promise , success ( ) , error ( ) ) ;
1016
1016
expect ( logStr ( ) ) . toBe ( '' ) ;
@@ -1135,7 +1135,7 @@ describe('q', function() {
1135
1135
1136
1136
1137
1137
describe ( 'security' , function ( ) {
1138
- it ( 'should call success callback only once even if the original promise gets fullfilled ' +
1138
+ it ( 'should call success callback only once even if the original promise gets fulfilled ' +
1139
1139
'multiple times' , function ( ) {
1140
1140
var evilPromise = {
1141
1141
then : function ( success , error , progress ) {
@@ -1161,7 +1161,7 @@ describe('q', function() {
1161
1161
} ) ;
1162
1162
1163
1163
1164
- it ( 'should call errback only once even if the original promise gets fullfilled multiple ' +
1164
+ it ( 'should call errback only once even if the original promise gets fulfilled multiple ' +
1165
1165
'times' , function ( ) {
1166
1166
var evilPromise = {
1167
1167
then : function ( success , error , progress ) {
@@ -1183,7 +1183,7 @@ describe('q', function() {
1183
1183
} ) ;
1184
1184
1185
1185
1186
- it ( 'should not call progressback after promise gets fullfilled , even if original promise ' +
1186
+ it ( 'should not call progressback after promise gets fulfilled , even if original promise ' +
1187
1187
'gets notified multiple times' , function ( ) {
1188
1188
var evilPromise = {
1189
1189
then : function ( success , error , progress ) {
0 commit comments