From 65a8832649cd4e49446f8c1b3492d38a142c135a Mon Sep 17 00:00:00 2001 From: Tim Haines Date: Tue, 14 May 2013 15:32:32 -0600 Subject: [PATCH 1/2] Add comment to past package --- packages/past/past.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/past/past.js b/packages/past/past.js index 054cf33c37..70cea1f9d2 100644 --- a/packages/past/past.js +++ b/packages/past/past.js @@ -1,3 +1,8 @@ +// This file is used to set up aliases and methods to preserve backwards on some +// deprecated methods. Care should be taken when adding aliases and methods +// that the target will not be undefined, as the past package is loaded early. +// In some cases, it may be best to define the alias in the package it refers to. + // Old under_score version of camelCase public API names. Meteor.is_client = Meteor.isClient; Meteor.is_server = Meteor.isServer; From 7aebc95f50868b570a4dc9d891c6d4c2106e1197 Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Wed, 22 May 2013 22:42:00 -0700 Subject: [PATCH 2/2] Add missing word. --- packages/past/past.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/past/past.js b/packages/past/past.js index 70cea1f9d2..7bdffe3263 100644 --- a/packages/past/past.js +++ b/packages/past/past.js @@ -1,7 +1,8 @@ -// This file is used to set up aliases and methods to preserve backwards on some -// deprecated methods. Care should be taken when adding aliases and methods -// that the target will not be undefined, as the past package is loaded early. -// In some cases, it may be best to define the alias in the package it refers to. +// This file is used to set up aliases and methods to preserve backwards +// compatibility on some deprecated methods. Care should be taken when +// adding aliases and methods that the target will not be undefined, as +// the past package is loaded early. In some cases, it may be best to +// define the alias in the package it refers to. // Old under_score version of camelCase public API names. Meteor.is_client = Meteor.isClient;