@@ -271,6 +271,7 @@ class MethodCall extends Call, QualifiableExpr, LateBindableExpr, @method_invoca
271271 * Gets the accessor that was used to generate this method, if any. For example, the
272272 * method call `MyExtensions.get_FirstChar(s)` on line 9 is generated from the property
273273 * accessor `get_FirstChar` on line 3 in
274+ *
274275 * ```csharp
275276 * static class MyExtensions {
276277 * extension(string s) {
@@ -505,6 +506,7 @@ class OperatorCall extends Call, LateBindableExpr, @operator_invocation_expr {
505506/**
506507 * A call to an extension operator, for example `3 * s` on
507508 * line 9 in
509+ *
508510 * ```csharp
509511 * static class MyExtensions {
510512 * extension(string s) {
@@ -623,7 +625,7 @@ class FunctionPointerCall extends DelegateLikeCall, @function_pointer_invocation
623625
624626/**
625627 * A call to an accessor. Either a property accessor call (`PropertyCall`),
626- * an indexer accessor call (`IndexerCall`) or an event accessor call
628+ * an indexer accessor call (`IndexerCall`), or an event accessor call
627629 * (`EventCall`).
628630 */
629631class AccessorCall extends Call , QualifiableExpr , @call_access_expr {
@@ -707,6 +709,7 @@ class IndexerCall extends AccessorCall, IndexerAccessExpr {
707709/**
708710 * A call to an extension property accessor (via the property), for example
709711 * `s.FirstChar` on line 9 in
712+ *
710713 * ```csharp
711714 * static class MyExtensions {
712715 * extension(string s) {
0 commit comments