Skip to content

Commit 5f5a21e

Browse files
committed
correct code block
1 parent a381698 commit 5f5a21e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/fundamentals/linq.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ $bitAnd
594594
The ``$bitAnd`` aggregation stage performs a bitwise AND operation on the given
595595
arguments. ``$bitAnd`` can take // describe arguments
596596

597-
..code-block:: csharp
597+
.. code-block:: csharp
598598
var queryable = collection.AsQueryable()
599599
.Select(x => x.P & x.Q
600600
);
@@ -615,7 +615,7 @@ $bitOr
615615
The ``$bitOr`` aggregation stage performs a bitwise OR operation on the given
616616
arguments. ``$bitOr`` can take // describe arguments - same as AND and XOR
617617

618-
..code-block:: csharp
618+
.. code-block:: csharp
619619
var queryable = collection.AsQueryable()
620620
.Select(x => x.P | x.Q
621621
);
@@ -628,7 +628,7 @@ $bitNot
628628
The ``$bitNot`` aggregation stage performs a bitwise NOT operation on the given
629629
argument. ``$bitOr`` only takes one argument.
630630

631-
..code-block:: csharp
631+
.. code-block:: csharp
632632
var queryable = collection.AsQueryable()
633633
.Select(x => !x.P
634634
);
@@ -641,7 +641,7 @@ $bitXor
641641
The ``$bitXor`` aggregation stage performs a bitwise XOR operation on the given
642642
arguments. ``$bitXor`` can take // describe arguments - same as AND and XOR
643643

644-
..code-block:: csharp
644+
.. code-block:: csharp
645645
var queryable = collection.AsQueryable()
646646
.Select(x => x.P ^ x.Q
647647
);

0 commit comments

Comments
 (0)