Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
* [Android] Fix the spell issue. (#1424)
Browse files Browse the repository at this point in the history
Fix the spell issue in error upload.
  • Loading branch information
YorkShen committed Aug 13, 2018
1 parent 9015a80 commit 8320979
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8320979

Please sign in to comment.