Skip to content

Commit 0a799fc

Browse files
committed
Docs changes
1 parent bb1478c commit 0a799fc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ public class GraphQlController :
301301

302302
static JObject? ParseVariables(string? variables)
303303
{
304-
if (variables == null)
304+
if (variables is null)
305305
{
306306
return null;
307307
}
@@ -679,14 +679,14 @@ query ($id: ID!)
679679
// websocketClient,
680680
// response =>
681681
// {
682-
// if (response == null)
682+
// if (response is null)
683683
// {
684684
// return;
685685
// }
686686
687687
// Assert.Null(response.Errors);
688688
689-
// if (response.Data != null)
689+
// if (response.Data is not null)
690690
// {
691691
// resetEvent.Set();
692692
// }

0 commit comments

Comments
 (0)