From 0c0199cfa0969a86704e67ec4a407f85145c3317 Mon Sep 17 00:00:00 2001 From: Joel DSouza Date: Wed, 27 Jan 2021 15:26:20 +0530 Subject: [PATCH] Fixed typo in Option docs --- packages/react-select/src/components/Option.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-select/src/components/Option.js b/packages/react-select/src/components/Option.js index ff954a21e7..deff63038a 100644 --- a/packages/react-select/src/components/Option.js +++ b/packages/react-select/src/components/Option.js @@ -31,8 +31,8 @@ export type OptionProps = PropsWithStyles & innerProps: InnerProps, /* Text to be displayed representing the option. */ label: string, - /* Type is used by the menu to determine whether this is an option or a group. - In the case of option this is always `option`. */ + /** Type is used by the menu to determine whether this is an option or a group. + In the case of option this is always `option`. **/ type: 'option', /* The data of the selected option. */ data: any,