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
This commit is contained in:
Nikolas Evers
2020-10-02 10:54:59 -07:00
committed by Facebook GitHub Bot
parent 587303aa4c
commit 524c32d39a

View File

@@ -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]];
```