Skip to content

Commit 91349ee

Browse files
committed
Fix: generate JavaDoc error
1 parent 92ba261 commit 91349ee

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

androidtagview/src/main/java/co/lujun/androidtagview/TagContainerLayout.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public class TagContainerLayout extends ViewGroup {
108108
/** OnTagClickListener for TagView*/
109109
private TagView.OnTagClickListener mOnTagClickListener;
110110

111-
/** Whether to support 'letters show with RTL(eg: Android -> diordnA)' style(default false)*/
111+
/** Whether to support 'letters show with RTL(eg: Android to diordnA)' style(default false)*/
112112
private boolean mTagSupportLettersRTL = false;
113113

114114
private Paint mPaint;
@@ -1197,15 +1197,15 @@ public void setCrossLineWidth(float mCrossLineWidth) {
11971197
}
11981198

11991199
/**
1200-
* Get the 'letters show with RTL(like: Android -> diordnA)' style if it's enabled
1200+
* Get the 'letters show with RTL(like: Android to diordnA)' style if it's enabled
12011201
* @return
12021202
*/
12031203
public boolean isTagSupportLettersRTL() {
12041204
return mTagSupportLettersRTL;
12051205
}
12061206

12071207
/**
1208-
* Set whether the 'support letters show with RTL(like: Android -> diordnA)' style is enabled
1208+
* Set whether the 'support letters show with RTL(like: Android to diordnA)' style is enabled
12091209
* @param mTagSupportLettersRTL
12101210
*/
12111211
public void setTagSupportLettersRTL(boolean mTagSupportLettersRTL) {

androidtagview/src/main/java/co/lujun/androidtagview/TagView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class TagView extends View {
7171
/** The distance between baseline and descent*/
7272
private float bdDistance;
7373

74-
/** Whether to support 'letters show with RTL(eg: Android -> diordnA)' style(default false)*/
74+
/** Whether to support 'letters show with RTL(eg: Android to diordnA)' style(default false)*/
7575
private boolean mTagSupportLettersRTL = false;
7676

7777
private Paint mPaint, mRipplePaint;

0 commit comments

Comments
 (0)