Skip to content

Commit

Permalink
[Docs] Remove smart characters from doc comments
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 494733732
(cherry picked from commit 87ce239)
  • Loading branch information
dsn5ft committed Jan 5, 2023
1 parent 35dfa92 commit 280a01c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public final class CollapsingTextHelper {
// by using our own texture
private static final boolean USE_SCALING_TEXTURE = Build.VERSION.SDK_INT < 18;
private static final String TAG = "CollapsingTextHelper";
private static final String ELLIPSIS_NORMAL = "\u2026"; // HORIZONTAL ELLIPSIS ()
private static final String ELLIPSIS_NORMAL = "\u2026"; // HORIZONTAL ELLIPSIS (...)

private static final float FADE_MODE_THRESHOLD_FRACTION_RELATIVE = 0.5f;

Expand Down
6 changes: 3 additions & 3 deletions lib/java/com/google/android/material/tabs/TabLayout.java
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public class TabLayout extends HorizontalScrollView {
/**
* Scrollable tabs display a subset of tabs at any given moment, and can contain longer tab labels
* and a larger number of tabs. They are best used for browsing contexts in touch interfaces when
* users dont need to directly compare the tab labels.
* users don't need to directly compare the tab labels.
*
* @see #setTabMode(int)
* @see #getTabMode()
Expand All @@ -218,7 +218,7 @@ public class TabLayout extends HorizontalScrollView {

/**
* Fixed tabs display all tabs concurrently and are best used with content that benefits from
* quick pivots between tabs. The maximum number of tabs is limited by the views width. Fixed
* quick pivots between tabs. The maximum number of tabs is limited by the view's width. Fixed
* tabs have equal width, based on the widest tab label.
*
* @see #setTabMode(int)
Expand Down Expand Up @@ -1072,7 +1072,7 @@ public void removeAllTabs() {
* content that benefits from quick pivots between tabs.
* <li>{@link #MODE_SCROLLABLE}: Scrollable tabs display a subset of tabs at any given moment,
* and can contain longer tab labels and a larger number of tabs. They are best used for
* browsing contexts in touch interfaces when users dont need to directly compare the tab
* browsing contexts in touch interfaces when users don't need to directly compare the tab
* labels. This mode is commonly used with a {@link androidx.viewpager.widget.ViewPager}.
* </ul>
*
Expand Down

0 comments on commit 280a01c

Please # to comment.