Skip to content

Commit

Permalink
Fix missing space in ReactPropertyException message
Browse files Browse the repository at this point in the history
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
  • Loading branch information
markv authored and facebook-github-bot committed Jun 29, 2022
1 parent e23520b commit 24560b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ public void addProperty(PropertyInfo propertyInfo) throws ReactPropertyException
+ " 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);
}

Expand Down

0 comments on commit 24560b6

Please sign in to comment.