mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8241014: Miscellaneous typos in documentation comments
Reviewed-by: igerasim, prappo, psandoz, rriggs, weijun
This commit is contained in:
parent
c5a7490809
commit
17ff85d4ad
39 changed files with 104 additions and 107 deletions
|
@ -778,14 +778,13 @@ public final class Pattern
|
|||
implements java.io.Serializable
|
||||
{
|
||||
|
||||
/**
|
||||
/*
|
||||
* Regular expression modifier values. Instead of being passed as
|
||||
* arguments, they can also be passed as inline modifiers.
|
||||
* For example, the following statements have the same effect.
|
||||
* <pre>
|
||||
* Pattern p1 = Pattern.compile("abc", Pattern.CASE_INSENSITIVE|Pattern.MULTILINE);
|
||||
* Pattern p2 = Pattern.compile("(?im)abc", 0);
|
||||
* </pre>
|
||||
*
|
||||
* Pattern p1 = Pattern.compile("abc", Pattern.CASE_INSENSITIVE|Pattern.MULTILINE);
|
||||
* Pattern p2 = Pattern.compile("(?im)abc", 0);
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue