YorkShen closed pull request #1424: * [Android] Fix the spell issue.
URL: https://github.com/apache/incubator-weex/pull/1424
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git
a/android/sdk/src/main/java/com/taobao/weex/ui/component/list/WXListComponent.java
b/android/sdk/src/main/java/com/taobao/weex/ui/component/list/WXListComponent.java
index fba7adc200..9e96d864ad 100644
---
a/android/sdk/src/main/java/com/taobao/weex/ui/component/list/WXListComponent.java
+++
b/android/sdk/src/main/java/com/taobao/weex/ui/component/list/WXListComponent.java
@@ -166,7 +166,7 @@ private void updateRecyclerAttr() {
WXExceptionUtils.commitCriticalExceptionRT(getInstanceId(),
WXErrorCode.WX_RENDER_ERR_LIST_INVALID_COLUMN_COUNT, "columnCount",
String.format(Locale.ENGLISH,
- "You are trying to set the list/recycler/vlist/waterfall's
column to %d, which is illeal. The column count should be a positive integer",
+ "You are trying to set the list/recycler/vlist/waterfall's
column to %d, which is illegal. The column count should be a positive integer",
mColumnCount),
new ArrayMap<String, String>());
mColumnCount = Constants.Value.COLUMN_COUNT_NORMAL;
diff --git
a/android/sdk/src/main/java/com/taobao/weex/ui/component/list/template/WXRecyclerTemplateList.java
b/android/sdk/src/main/java/com/taobao/weex/ui/component/list/template/WXRecyclerTemplateList.java
index a6530577e9..ff56034fca 100644
---
a/android/sdk/src/main/java/com/taobao/weex/ui/component/list/template/WXRecyclerTemplateList.java
+++
b/android/sdk/src/main/java/com/taobao/weex/ui/component/list/template/WXRecyclerTemplateList.java
@@ -933,7 +933,7 @@ private void updateRecyclerAttr(){
WXExceptionUtils.commitCriticalExceptionRT(getInstanceId(),
WXErrorCode.WX_RENDER_ERR_LIST_INVALID_COLUMN_COUNT,
"columnCount",
String.format(Locale.ENGLISH,
- "You are trying to set the list/recycler/vlist/waterfall's
column to %d, which is illeal. The column count should be a positive integer",
+ "You are trying to set the list/recycler/vlist/waterfall's
column to %d, which is illegal. The column count should be a positive integer",
mColumnCount),
new ArrayMap<String, String>());
mColumnCount = Constants.Value.COLUMN_COUNT_NORMAL;
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services