Skip to content

Commit c43d119

Browse files
committed
Fixed spelling error: "sine" -> "since"
1 parent 484eedd commit c43d119

8 files changed

+17
-17
lines changed

packages/angular-meteor-data/modules/angular-meteor-camera.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ var angularMeteorCamera = angular.module('angular-meteor.camera', ['angular-mete
66
angularMeteorCamera.service('$meteorCamera', [
77
'$q', '$meteorUtils',
88
function ($q, $meteorUtils) {
9-
console.warn('[angular-meteor.camera] Please note that this module is deprecated sine 1.3.0 and will be removed in 1.4.0!');
9+
console.warn('[angular-meteor.camera] Please note that this module is deprecated since 1.3.0 and will be removed in 1.4.0!');
1010
var pack = Package['mdg:camera'];
1111
if (!pack) return;
1212

1313
var MeteorCamera = pack.MeteorCamera;
1414

1515
this.getPicture = function(options){
16-
console.warn('[angular-meteor.camera.getPicture] Please note that this method is deprecated sine 1.3.0 and will be removed in 1.4.0!');
16+
console.warn('[angular-meteor.camera.getPicture] Please note that this method is deprecated since 1.3.0 and will be removed in 1.4.0!');
1717

1818
options = options || {};
1919
var deferred = $q.defer();

packages/angular-meteor-data/modules/angular-meteor-collection.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ var angularMeteorCollection = angular.module('angular-meteor.collection',
1010
angularMeteorCollection.factory('AngularMeteorCollection', [
1111
'$q', '$meteorSubscribe', '$meteorUtils', '$rootScope', '$timeout', 'diffArray',
1212
function($q, $meteorSubscribe, $meteorUtils, $rootScope, $timeout, diffArray) {
13-
console.warn('[angular-meteor.collection] Please note that this module is deprecated sine 1.3.0 and will be removed in 1.4.0!');
13+
console.warn('[angular-meteor.collection] Please note that this module is deprecated since 1.3.0 and will be removed in 1.4.0!');
1414

1515
function AngularMeteorCollection(curDefFunc, collection, diffArrayFunc, autoClientSave) {
16-
console.warn('[angular-meteor.$meteorCollection] Please note that this method is deprecated sine 1.3.0 and will be removed in 1.4.0!');
16+
console.warn('[angular-meteor.$meteorCollection] Please note that this method is deprecated since 1.3.0 and will be removed in 1.4.0!');
1717

1818
var data = [];
1919
// Server backup data to evaluate what changes come from client
@@ -96,7 +96,7 @@ angularMeteorCollection.factory('AngularMeteorCollection', [
9696
collection.update(docId, modifier, createFulfill(function() {
9797
return {_id: docId, action: 'updated'};
9898
}));
99-
}
99+
}
100100
// insert
101101
else {
102102
collection.insert(doc, createFulfill(function(id) {
@@ -149,7 +149,7 @@ angularMeteorCollection.factory('AngularMeteorCollection', [
149149
// remove docs
150150
else {
151151
keyOrDocs = [].concat(keyOrDocs);
152-
152+
153153
keys = _.map(keyOrDocs, function(keyOrDoc) {
154154
return keyOrDoc._id || keyOrDoc;
155155
});

packages/angular-meteor-data/modules/angular-meteor-methods.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ angularMeteorMethods.service('$meteorMethods', [
66
'$q', '$meteorUtils',
77
function($q, $meteorUtils) {
88
this.call = function(){
9-
console.warn('[angular-meteor.$meteor.call] Please note that this method is deprecated sine 1.3.0 and will be removed in 1.4.0!');
9+
console.warn('[angular-meteor.$meteor.call] Please note that this method is deprecated since 1.3.0 and will be removed in 1.4.0!');
1010

1111
var deferred = $q.defer();
1212
var fulfill = $meteorUtils.fulfill(deferred);
@@ -15,4 +15,4 @@ angularMeteorMethods.service('$meteorMethods', [
1515
return deferred.promise;
1616
};
1717
}
18-
]);
18+
]);

packages/angular-meteor-data/modules/angular-meteor-object.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var angularMeteorObject = angular.module('angular-meteor.object',
66
angularMeteorObject.factory('AngularMeteorObject', [
77
'$q', '$meteorSubscribe', '$meteorUtils', 'diffArray', 'getUpdates', 'AngularMeteorCollection',
88
function($q, $meteorSubscribe, $meteorUtils, diffArray, getUpdates, AngularMeteorCollection) {
9-
console.warn('[angular-meteor.object] Please note that this module is deprecated sine 1.3.0 and will be removed in 1.4.0!');
9+
console.warn('[angular-meteor.object] Please note that this module is deprecated since 1.3.0 and will be removed in 1.4.0!');
1010

1111
// A list of internals properties to not watch for, nor pass to the Document on update and etc.
1212
AngularMeteorObject.$$internalProps = [
@@ -16,7 +16,7 @@ angularMeteorObject.factory('AngularMeteorObject', [
1616
];
1717

1818
function AngularMeteorObject (collection, selector, options){
19-
console.warn('[angular-meteor.$meteorObject] Please note that this method is deprecated sine 1.3.0 and will be removed in 1.4.0!');
19+
console.warn('[angular-meteor.$meteorObject] Please note that this method is deprecated since 1.3.0 and will be removed in 1.4.0!');
2020
// Make data not be an object so we can extend it to preserve
2121
// Collection Helpers and the like
2222
var helpers = collection._helpers;

packages/angular-meteor-data/modules/angular-meteor-session.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ angularMeteorSession.factory('$meteorSession', ['$meteorUtils', '$parse',
88
return {
99

1010
bind: function(scope, model) {
11-
console.warn('[angular-meteor.session.bind] Please note that this method is deprecated sine 1.3.0 and will be removed in 1.4.0!');
11+
console.warn('[angular-meteor.session.bind] Please note that this method is deprecated since 1.3.0 and will be removed in 1.4.0!');
1212

1313
var getter = $parse(model);
1414
var setter = getter.assign;

packages/angular-meteor-data/modules/angular-meteor-subscribe.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var angularMeteorSubscribe = angular.module('angular-meteor.subscribe', []);
33

44
angularMeteorSubscribe.service('$meteorSubscribe', ['$q',
55
function ($q) {
6-
console.warn('[angular-meteor.subscribe] Please note that this module is deprecated sine 1.3.0 and will be removed in 1.4.0!');
6+
console.warn('[angular-meteor.subscribe] Please note that this module is deprecated since 1.3.0 and will be removed in 1.4.0!');
77

88
var self = this;
99

packages/angular-meteor-data/modules/angular-meteor-user.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var angularMeteorUser = angular.module('angular-meteor.user', ['angular-meteor.u
66
angularMeteorUser.service('$meteorUser', [
77
'$rootScope', '$meteorUtils', '$q',
88
function($rootScope, $meteorUtils, $q){
9-
console.warn('[angular-meteor.user] Please note that this module is deprecated sine 1.3.0 and will be removed in 1.4.0!');
9+
console.warn('[angular-meteor.user] Please note that this module is deprecated since 1.3.0 and will be removed in 1.4.0!');
1010

1111
var pack = Package['accounts-base'];
1212
if (!pack) return;
@@ -15,7 +15,7 @@ angularMeteorUser.service('$meteorUser', [
1515
var Accounts = pack.Accounts;
1616

1717
this.waitForUser = function(){
18-
console.warn('[angular-meteor.waitForUser] Please note that this method is deprecated sine 1.3.0 and will be removed in 1.4.0!');
18+
console.warn('[angular-meteor.waitForUser] Please note that this method is deprecated since 1.3.0 and will be removed in 1.4.0!');
1919

2020
var deferred = $q.defer();
2121

@@ -28,7 +28,7 @@ angularMeteorUser.service('$meteorUser', [
2828
};
2929

3030
this.requireUser = function(){
31-
console.warn('[angular-meteor.requireUser] Please note that this method is deprecated sine 1.3.0 and will be removed in 1.4.0!');
31+
console.warn('[angular-meteor.requireUser] Please note that this method is deprecated since 1.3.0 and will be removed in 1.4.0!');
3232

3333
var deferred = $q.defer();
3434

@@ -45,7 +45,7 @@ angularMeteorUser.service('$meteorUser', [
4545
};
4646

4747
this.requireValidUser = function(validatorFn) {
48-
console.warn('[angular-meteor.requireValidUser] Please note that this method is deprecated sine 1.3.0 and will be removed in 1.4.0!');
48+
console.warn('[angular-meteor.requireValidUser] Please note that this method is deprecated since 1.3.0 and will be removed in 1.4.0!');
4949

5050
return self.requireUser().then(function(user){
5151
var valid = validatorFn( user );

packages/angular-meteor-data/modules/angular-meteor-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var angularMeteorUtils = angular.module('angular-meteor.utils', []);
55
angularMeteorUtils.service('$meteorUtils', [
66
'$q', '$timeout',
77
function ($q, $timeout) {
8-
console.warn('[angular-meteor.utils] Please note that this module is deprecated sine 1.3.0 and will be removed in 1.4.0!');
8+
console.warn('[angular-meteor.utils] Please note that this module is deprecated since 1.3.0 and will be removed in 1.4.0!');
99

1010
var self = this;
1111

0 commit comments

Comments
 (0)