File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -212,29 +212,23 @@ private void ThrowIfNull() {
212
212
}
213
213
214
214
/// <summary>
215
- /// Creates a
216
- /// <see cref="HttpsCallableReference" />
217
- /// given a name.
215
+ /// Creates a <see cref="HttpsCallableReference" /> given a name.
218
216
/// </summary>
219
217
public HttpsCallableReference GetHttpsCallable ( string name ) {
220
218
ThrowIfNull ( ) ;
221
219
return new HttpsCallableReference ( this , functionsInternal . GetHttpsCallable ( name ) ) ;
222
220
}
223
221
224
222
/// <summary>
225
- /// Creates a
226
- /// <see cref="HttpsCallableReference" />
227
- /// given a URL.
223
+ /// Creates a <see cref="HttpsCallableReference" /> given a URL.
228
224
/// </summary>
229
225
public HttpsCallableReference GetHttpsCallableFromURL ( string url ) {
230
226
ThrowIfNull ( ) ;
231
227
return new HttpsCallableReference ( this , functionsInternal . GetHttpsCallableFromURL ( url ) ) ;
232
228
}
233
229
234
230
/// <summary>
235
- /// Creates a
236
- /// <see cref="HttpsCallableReference" />
237
- /// given a URL.
231
+ /// Creates a <see cref="HttpsCallableReference" /> given a URL.
238
232
/// </summary>
239
233
public HttpsCallableReference GetHttpsCallableFromURL ( Uri url ) {
240
234
ThrowIfNull ( ) ;
You can’t perform that action at this time.
0 commit comments