Fix missing space in ReactPropertyException message

Summary:
Before
```
"If you want to override a property, don't addthe ReactProp annotation to the property in the subclass",
```

After
```
"If you want to override a property, don't add the ReactProp annotation to the property in the subclass",
```

Reviewed By: michaeltangelo

Differential Revision: D37526541

fbshipit-source-id: 850424a1b5a5aeb0abe64b6defcf6db96d2000cc
This commit is contained in:
Mark Verlingieri
2022-06-29 14:33:23 -07:00
committed by Facebook GitHub Bot
parent e23520bb56
commit 24560b6718
@@ -593,7 +593,7 @@ public class ReactPropertyProcessor extends AbstractProcessor {
+ " has already registered a property named \""
+ name
+ "\". If you want to override a property, don't add"
+ "the @ReactProp annotation to the property in the subclass",
+ " the @ReactProp annotation to the property in the subclass",
propertyInfo);
}