Skip to content

Commit 859348c

Browse files
committed
chore(*): change remaining /* @this */ to /** @this */
Ref ec565dd
1 parent 9360aa2 commit 859348c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

benchmarks/largetable-bp/app.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ app.controller('DataController', function DataController($scope, $rootScope) {
2323
$scope.numberOfBindings = totalRows * totalColumns * 2 + totalRows + 1;
2424
$scope.numberOfWatches = '?';
2525

26-
/* @this */
26+
/** @this */
2727
function iGetter() { return this.i; }
28-
/* @this */
28+
/** @this */
2929
function jGetter() { return this.j; }
3030

3131
for (var i = 0; i < totalRows; i++) {

compare-master-to-stable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var exec = function(cmd) {
2121
};
2222

2323
var andThen = function(fn, after) {
24-
return /* @this */ function() {
24+
return /** @this */ function() {
2525
return fn.apply(this, arguments).then(after);
2626
};
2727
};

docs/app/assets/js/search-worker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ importScripts('../components/lunr.js-0.5.12/lunr.min.js');
88

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

0 commit comments

Comments
 (0)