Skip to content

Commit

Permalink
chore(*): change remaining /* @this */ to /** @this */
Browse files Browse the repository at this point in the history
  • Loading branch information
mgol committed Aug 10, 2016
1 parent 9360aa2 commit 859348c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions benchmarks/largetable-bp/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ app.controller('DataController', function DataController($scope, $rootScope) {
$scope.numberOfBindings = totalRows * totalColumns * 2 + totalRows + 1;
$scope.numberOfWatches = '?';

/* @this */
/** @this */
function iGetter() { return this.i; }
/* @this */
/** @this */
function jGetter() { return this.j; }

for (var i = 0; i < totalRows; i++) {
Expand Down
2 changes: 1 addition & 1 deletion compare-master-to-stable.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var exec = function(cmd) {
};

var andThen = function(fn, after) {
return /* @this */ function() {
return /** @this */ function() {
return fn.apply(this, arguments).then(after);
};
};
Expand Down
2 changes: 1 addition & 1 deletion docs/app/assets/js/search-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ importScripts('../components/lunr.js-0.5.12/lunr.min.js');

// Create the lunr index - the docs should be an array of object, each object containing
// the path and search terms for a page
var index = lunr(/* @this */function() {
var index = lunr(/** @this */function() {
this.ref('path');
this.field('titleWords', {boost: 50});
this.field('members', {boost: 40});
Expand Down

0 comments on commit 859348c

Please sign in to comment.