From 6af5db21f4186ec72c65ce39c121ae967e315621 Mon Sep 17 00:00:00 2001 From: Ganapati V S <ganapativs@users.noreply.github.com> Date: Wed, 20 Jun 2018 18:56:08 +0530 Subject: [PATCH] fix(docz): typo (#63) --- packages/docz/src/components/PropsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docz/src/components/PropsTable.tsx b/packages/docz/src/components/PropsTable.tsx index 096b67a7b..4673fd5c4 100644 --- a/packages/docz/src/components/PropsTable.tsx +++ b/packages/docz/src/components/PropsTable.tsx @@ -67,7 +67,7 @@ export type TooltipComponent = React.ComponentType<{ const extractTypeDescribedValue = (type: PropType): string => { const { name, value } = type - // instanceOf, computed shape, uknown enum + // instanceOf, computed shape, unknown enum if (typeof value === 'string') { return value }