From 524c32d39a038dfe71131be85d4e555215014d85 Mon Sep 17 00:00:00 2001 From: Nikolas Evers Date: Fri, 2 Oct 2020 10:54:59 -0700 Subject: [PATCH] Fix typo `Abritrary` (#1566) Summary: Fixes the typo `Abritrary` in the docs which should be `Arbitrary` instead ## Changelog Docs: Fixed the typo `AbritraryView` (now `ArbitraryView`) Pull Request resolved: https://github.com/facebook/flipper/pull/1566 Test Plan: -- Reviewed By: cekkaewnumchai Differential Revision: D24078448 Pulled By: passy fbshipit-source-id: b2a1b58c9bff8684ed6cd6c7958a826480371fd2 --- docs/extending/layout-inspector.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extending/layout-inspector.mdx b/docs/extending/layout-inspector.mdx index 24c547ed6..54279bda1 100644 --- a/docs/extending/layout-inspector.mdx +++ b/docs/extending/layout-inspector.mdx @@ -101,7 +101,7 @@ In order to register your descriptor for an object, you use `SKDescriptorMapper` ```objectivec [descriptorMapper registerDescriptor:[SKArbitraryViewDescriptor new] - forClass:[AbritraryView class]]; + forClass:[ArbitraryView class]]; ```