diff --git a/x-pack/plugins/licensing/README.md b/x-pack/plugins/licensing/README.md index fe0c82790b820..339abb77ced88 100644 --- a/x-pack/plugins/licensing/README.md +++ b/x-pack/plugins/licensing/README.md @@ -67,7 +67,7 @@ class MyPlugin { deps.licensing.license$.subscribe(license => { const { state, message } = license.check('myPlugin', 'gold') const hasRequiredLicense = state === LICENSE_CHECK_STATE.Valid; - if(hasRequiredLicense && license.getFeature('name').isAvailable){ + if (hasRequiredLicense && license.getFeature('name').isAvailable) { // enable some server side logic } else { log(message);