Skip to content

Commit ef331a9

Browse files
daymxnDavid Motsonashvili
authored and
David Motsonashvili
committed
Wrap &lt and &gt symbols in code blocks (#4299)
1 parent 33ae62d commit ef331a9

File tree

3 files changed

+51
-51
lines changed

3 files changed

+51
-51
lines changed

firebase-database/src/main/java/com/google/firebase/database/DataSnapshot.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ public boolean exists() {
105105
* returned are:
106106
*
107107
* <ul>
108-
* <li>Boolean
109-
* <li>String
110-
* <li>Long
111-
* <li>Double
112-
* <li>Map&lt;String, Object&gt;
113-
* <li>List&lt;Object&gt;
108+
* <li><code>Boolean</code>
109+
* <li><code>String</code>
110+
* <li><code>Long</code>
111+
* <li><code>Double</code>
112+
* <li><code>Map&lt;String, Object&gt;</code>
113+
* <li><code>List&lt;Object&gt;</code>
114114
* </ul>
115115
*
116116
* This list is recursive; the possible types for {@link java.lang.Object} in the above list is
@@ -129,12 +129,12 @@ public Object getValue() {
129129
* returned are:
130130
*
131131
* <ul>
132-
* <li>Boolean
133-
* <li>String
134-
* <li>Long
135-
* <li>Double
136-
* <li>Map&lt;String, Object&gt;
137-
* <li>List&lt;Object&gt;
132+
* <li><code>Boolean</code>
133+
* <li><code>String</code>
134+
* <li><code>Long</code>
135+
* <li><code>Double</code>
136+
* <li><code>Map&lt;String, Object&gt;</code>
137+
* <li><code>List&lt;Object&gt;</code>
138138
* </ul>
139139
*
140140
* This list is recursive; the possible types for {@link java.lang.Object} in the above list is
@@ -300,8 +300,8 @@ public void remove() {
300300
* types:
301301
*
302302
* <ul>
303-
* <li>Double
304-
* <li>String
303+
* <li><code>Double</code>
304+
* <li><code>String</code>
305305
* </ul>
306306
*
307307
* Note that null is also allowed

firebase-database/src/main/java/com/google/firebase/database/DatabaseReference.java

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@ public DatabaseReference push() {
126126
* correspond to the JSON types:
127127
*
128128
* <ul>
129-
* <li>Boolean
130-
* <li>Long
131-
* <li>Double
132-
* <li>String
133-
* <li>Map&lt;String, Object&gt;
134-
* <li>List&lt;Object&gt;
129+
* <li><code>Boolean</code>
130+
* <li><code>Long</code>
131+
* <li><code>Double</code>
132+
* <li><code>String</code>
133+
* <li><code>Map&lt;String, Object&gt;</code>
134+
* <li><code>List&lt;Object&gt;</code>
135135
* </ul>
136136
*
137137
* <br>
@@ -165,12 +165,12 @@ public Task<Void> setValue(@Nullable Object value) {
165165
* the JSON types:
166166
*
167167
* <ul>
168-
* <li>Boolean
169-
* <li>Long
170-
* <li>Double
171-
* <li>String
172-
* <li>Map&lt;String, Object&gt;
173-
* <li>List&lt;Object&gt;
168+
* <li><code>Boolean</code>
169+
* <li><code>Long</code>
170+
* <li><code>Double</code>
171+
* <li><code>String</code>
172+
* <li><code>Map&lt;String, Object&gt;</code>
173+
* <li><code>List&lt;Object&gt;</code>
174174
* </ul>
175175
*
176176
* <br>
@@ -205,12 +205,12 @@ public Task<Void> setValue(@Nullable Object value, @Nullable Object priority) {
205205
* correspond to the JSON types:
206206
*
207207
* <ul>
208-
* <li>Boolean
209-
* <li>Long
210-
* <li>Double
211-
* <li>String
212-
* <li>Map&lt;String, Object&gt;
213-
* <li>List&lt;Object&gt;
208+
* <li><code>Boolean</code>
209+
* <li><code>Long</code>
210+
* <li><code>Double</code>
211+
* <li><code>String</code>
212+
* <li><code>Map&lt;String, Object&gt;</code>
213+
* <li><code>List&lt;Object&gt;</code>
214214
* </ul>
215215
*
216216
* <br>
@@ -242,12 +242,12 @@ public void setValue(@Nullable Object value, @Nullable CompletionListener listen
242242
* value correspond to the JSON types:
243243
*
244244
* <ul>
245-
* <li>Boolean
246-
* <li>Long
247-
* <li>Double
248-
* <li>String
249-
* <li>Map&lt;String, Object&gt;
250-
* <li>List&lt;Object&gt;
245+
* <li><code>Boolean</code>
246+
* <li><code>Long</code>
247+
* <li><code>Double</code>
248+
* <li><code>String</code>
249+
* <li><code>Map&lt;String, Object&gt;</code>
250+
* <li><code>List&lt;Object&gt;</code>
251251
* </ul>
252252
*
253253
* <br>

firebase-database/src/main/java/com/google/firebase/database/MutableData.java

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ public String getKey() {
166166
* returned are:
167167
*
168168
* <ul>
169-
* <li>Boolean
170-
* <li>String
171-
* <li>Long
172-
* <li>Double
173-
* <li>Map&lt;String, Object&gt;
174-
* <li>List&lt;Object&gt;
169+
* <li><code>Boolean</code>
170+
* <li><code>Long</code>
171+
* <li><code>Double</code>
172+
* <li><code>String</code>
173+
* <li><code>Map&lt;String, Object&gt;</code>
174+
* <li><code>List&lt;Object&gt;</code>
175175
* </ul>
176176
*
177177
* This list is recursive; the possible types for {@link java.lang.Object} in the above list is
@@ -267,11 +267,11 @@ public <T> T getValue(@NonNull GenericTypeIndicator<T> t) {
267267
* the value correspond to the JSON types:
268268
*
269269
* <ul>
270-
* <li>Boolean
271-
* <li>Long
272-
* <li>Double
273-
* <li>Map&lt;String, Object&gt;
274-
* <li>List&lt;Object&gt;
270+
* <li><code>Boolean</code>
271+
* <li><code>Long</code>
272+
* <li><code>Double</code>
273+
* <li><code>Map&lt;String, Object&gt;</code>
274+
* <li><code>List&lt;Object&gt;</code>
275275
* </ul>
276276
*
277277
* <br>
@@ -317,8 +317,8 @@ public void setPriority(@Nullable Object priority) {
317317
* Gets the current priority at this location. The possible return types are:
318318
*
319319
* <ul>
320-
* <li>Double
321-
* <li>String
320+
* <li><code>Double</code>
321+
* <li><code>String</code>
322322
* </ul>
323323
*
324324
* Note that null is allowed

0 commit comments

Comments
 (0)