Skip to content

Commit

Permalink
fix: change apiFilter querystring to query in ng doc(#3383)
Browse files Browse the repository at this point in the history
* change URL query key name

Close #3363
  • Loading branch information
baruchvlz authored and filipesilva committed Dec 4, 2016
1 parent 457a6e0 commit 5b2a0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular-cli/tasks/doc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const opn = require('opn');

export const DocTask: any = Task.extend({
run: function(keyword: string) {
const searchUrl = `https://angular.io/docs/ts/latest/api/#!?apiFilter=${keyword}`;
const searchUrl = `https://angular.io/docs/ts/latest/api/#!?query=${keyword}`;
return opn(searchUrl, { wait: false });
}
});

0 comments on commit 5b2a0fb

Please sign in to comment.