File tree Expand file tree Collapse file tree
contrib/goToDeclaration/browser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -444,7 +444,7 @@ export interface DefinitionProvider {
444444
445445/**
446446 * The implementation provider interface defines the contract between extensions and
447- * the find all implementations feature.
447+ * the go to implementation feature.
448448 */
449449export interface ImplementationProvider {
450450 /**
Original file line number Diff line number Diff line change @@ -264,8 +264,8 @@ export class GoToImplementationAction extends ImplementationAction {
264264 constructor ( ) {
265265 super ( new DefinitionActionConfig ( ) , {
266266 id : GoToImplementationAction . ID ,
267- label : nls . localize ( 'actions.goToImplementation.label' , "Find All Implementations " ) ,
268- alias : 'Find All Implementations ' ,
267+ label : nls . localize ( 'actions.goToImplementation.label' , "Go to Implementation " ) ,
268+ alias : 'Go to Implementation ' ,
269269 precondition : ContextKeyExpr . and (
270270 ModeContextKeys . hasImplementationProvider ,
271271 ModeContextKeys . isInEmbeddedEditor . toNegated ( ) ) ,
@@ -275,7 +275,7 @@ export class GoToImplementationAction extends ImplementationAction {
275275 } ,
276276 menuOpts : {
277277 group : 'navigation' ,
278- order : 1.4
278+ order : 1.3
279279 }
280280 } ) ;
281281 }
@@ -337,7 +337,7 @@ export class GoToTypeDefintionAction extends TypeDefinitionAction {
337337 } ,
338338 menuOpts : {
339339 group : 'navigation' ,
340- order : 1.3
340+ order : 1.4
341341 }
342342 } ) ;
343343 }
Original file line number Diff line number Diff line change @@ -4687,7 +4687,7 @@ declare module monaco.languages {
46874687
46884688 /**
46894689 * The implementation provider interface defines the contract between extensions and
4690- * the find all implementations feature.
4690+ * the go to implementation feature.
46914691 */
46924692 export interface ImplementationProvider {
46934693 /**
You can’t perform that action at this time.
0 commit comments