Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b76e6836 authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

Merge "Fixed typo on TextValueSanitizer sample." into pi-dev am: c5b828df

am: b779f340

Change-Id: Ibc265123a5061fead1416c3a0a1027da3ce5f5bc
parents 4291ea0c b779f340
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ import java.util.regex.Pattern;
 * <p>For example, to remove spaces from groups of 4-digits in a credit card:
 *
 * <pre class="prettyprint">
 * new TextValueSanitizer(Pattern.compile("^(\\d{4})\\s?(\\d{4})\\s?(\\d{4})\\s?(\\d{4})$",
 * new TextValueSanitizer(Pattern.compile("^(\\d{4})\\s?(\\d{4})\\s?(\\d{4})\\s?(\\d{4})$"),
 *     "$1$2$3$4")
 * </pre>
 */