You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by ch...@apache.org on 2020/07/29 08:17:49 UTC

[calcite] branch master updated: Site: Fix wrong syntax in tutorial.md

This is an automated email from the ASF dual-hosted git repository.

chunwei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new b047cf5  Site: Fix wrong syntax in tutorial.md
b047cf5 is described below

commit b047cf5335442f9b5175cba0bb8cf33878539c52
Author: Chunwei Lei <ch...@gmail.com>
AuthorDate: Wed Jul 29 16:10:15 2020 +0800

    Site: Fix wrong syntax in tutorial.md
---
 site/_docs/tutorial.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/site/_docs/tutorial.md b/site/_docs/tutorial.md
index 78136ea..6733d72 100644
--- a/site/_docs/tutorial.md
+++ b/site/_docs/tutorial.md
@@ -561,7 +561,7 @@ public class CsvProjectTableScanRule
             b0.operand(LogicalProject.class).oneInput(b1 ->
                 b1.operand(CsvTableScan.class).noInputs()))
         .as(Config.class);
- 
+
     @Override default CsvProjectTableScanRule toRule() {
       return new CsvProjectTableScanRule(this);
     }
@@ -570,7 +570,7 @@ public class CsvProjectTableScanRule
 
 The default instance of the rule resides in the `CsvRules` holder class:
 
-{% highlight %}
+{% highlight java%}
 public abstract class CsvRules {
   public static final CsvProjectTableScanRule PROJECT_SCAN =
       CsvProjectTableScanRule.Config.DEFAULT.toRule();