Skip to content

Commit 37b6434

Browse files
committed
Update ArrayUtils.java
1 parent d76be34 commit 37b6434

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

microsphere-java-core/src/main/java/io/microsphere/util/ArrayUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public abstract class ArrayUtils implements Utils {
170170
* <p>This method returns an array containing the specified elements. The type of the returned array is inferred
171171
* from the type of the first element passed, or from the context if the method is used in a typed assignment.</p>
172172
*
173-
* <p>Example usage:</p>
173+
* <h3>Example Usage</h3>
174174
* <pre>{@code
175175
* String[] strings = ArrayUtils.of("one", "two", "three");
176176
* Integer[] integers = ArrayUtils.of(1, 2, 3);
@@ -190,7 +190,7 @@ public static <T> T[] of(T... values) {
190190
* <p>This method returns an array containing the specified elements. The type of the returned array is explicitly
191191
* defined by the method's return type.</p>
192192
*
193-
* <p>Example usage:</p>
193+
* <h3>Example Usage</h3>
194194
* <pre>{@code
195195
* boolean[] booleans = ArrayUtils.ofBooleans(true, false, true);
196196
* }</pre>
@@ -208,7 +208,7 @@ public static boolean[] ofBooleans(boolean... values) {
208208
* <p>This method returns an array containing the specified elements. The type of the returned array is explicitly
209209
* defined by the method's return type.</p>
210210
*
211-
* <p>Example usage:</p>
211+
* <h3>Example Usage</h3>
212212
* <pre>{@code
213213
* byte[] bytes = ArrayUtils.ofBytes((byte) 1, (byte) 2, (byte) 3);
214214
* }</pre>

0 commit comments

Comments
 (0)