Skip to content

Commit

Permalink
Fix some eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DianaDerevyankina committed Jun 2, 2020
1 parent 011b1d6 commit 70a4d1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class TutorialsRegistry {

unregisterTutorial: (specProvider: TutorialProvider) => {
this.tutorialProviders = this.tutorialProviders.filter(
provider => provider !== specProvider
(provider) => provider !== specProvider
);
},

Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/apm/server/tutorial/elastic_cloud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
createJsAgentInstructions,
createGoAgentInstructions,
createJavaAgentInstructions,
createDotNetAgentInstructions
createDotNetAgentInstructions,
} from '../../../../../src/plugins/apm_oss/server';
import { CloudSetup } from '../../../cloud/server';

Expand Down

0 comments on commit 70a4d1d

Please sign in to comment.