Syntax in styleguide.mdx is breaking docs build (#99840) (#99859)

* Update STYLEGUIDE.mdx

* add space in title

Co-authored-by: Stacey Gammon <gammon@elastic.co>
This commit is contained in:
Kibana Machine 2021-05-11 20:12:01 -04:00 committed by GitHub
parent a43ea4b1ff
commit afc7c490d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
---
id: kibStyleGuide
slug: /kibana-dev-docs/styleguide
title: StyleGuide
title: Style Guide
summary: JavaScript/TypeScript styleguide.
date: 2021-05-06
tags: ['kibana', 'onboarding', 'dev', 'styleguide', 'typescript', 'javascript']
@ -680,7 +680,7 @@ Using `react-component` means adding a bunch of components into angular, while `
### Action function names and prop function names
Name action functions in the form of a strong verb and passed properties in the form of on<Subject><Change>. E.g:
Name action functions in the form of a strong verb and passed properties in the form of `on<Subject><Change>`. E.g:
```jsx
<sort-button onClick={action.sort}/>