Skip to content

Commit d32b596

Browse files
committed
Formatting comments
1 parent ccbae7e commit d32b596

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

functions/src/FirebaseFunctions.cs

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -212,29 +212,23 @@ private void ThrowIfNull() {
212212
}
213213

214214
/// <summary>
215-
/// Creates a
216-
/// <see cref="HttpsCallableReference" />
217-
/// given a name.
215+
/// Creates a <see cref="HttpsCallableReference" /> given a name.
218216
/// </summary>
219217
public HttpsCallableReference GetHttpsCallable(string name) {
220218
ThrowIfNull();
221219
return new HttpsCallableReference(this, functionsInternal.GetHttpsCallable(name));
222220
}
223221

224222
/// <summary>
225-
/// Creates a
226-
/// <see cref="HttpsCallableReference" />
227-
/// given a URL.
223+
/// Creates a <see cref="HttpsCallableReference" /> given a URL.
228224
/// </summary>
229225
public HttpsCallableReference GetHttpsCallableFromURL(string url) {
230226
ThrowIfNull();
231227
return new HttpsCallableReference(this, functionsInternal.GetHttpsCallableFromURL(url));
232228
}
233229

234230
/// <summary>
235-
/// Creates a
236-
/// <see cref="HttpsCallableReference" />
237-
/// given a URL.
231+
/// Creates a <see cref="HttpsCallableReference" /> given a URL.
238232
/// </summary>
239233
public HttpsCallableReference GetHttpsCallableFromURL(Uri url) {
240234
ThrowIfNull();

0 commit comments

Comments
 (0)