docs(angular.forEach): add missing space in test

Closes #6130
This commit is contained in:
Franziskus Domig
2014-02-05 17:29:30 +01:00
committed by Igor Minar
parent 8829a2a86d
commit a8c1d9c978

View File

@@ -201,7 +201,7 @@ function isArrayLike(obj) {
angular.forEach(values, function(value, key){
this.push(key + ': ' + value);
}, log);
expect(log).toEqual(['name: misko', 'gender:male']);
expect(log).toEqual(['name: misko', 'gender: male']);
</pre>
*
* @param {Object|Array} obj Object to iterate over.