Repository: spark
Updated Branches:
  refs/heads/master dc1d324fd -> 0dee44a66


[MINOR] Remove unnecessary spaces in `include_example.rb`

Author: Yu ISHIKAWA <yuu.ishik...@gmail.com>

Closes #9960 from yu-iskw/minor-remove-spaces.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0dee44a6
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0dee44a6
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0dee44a6

Branch: refs/heads/master
Commit: 0dee44a6646daae0cc03dbc32125e080dff0f4ae
Parents: dc1d324
Author: Yu ISHIKAWA <yuu.ishik...@gmail.com>
Authored: Wed Nov 25 11:35:52 2015 -0800
Committer: Andrew Or <and...@databricks.com>
Committed: Wed Nov 25 11:35:52 2015 -0800

----------------------------------------------------------------------
 docs/_plugins/include_example.rb | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/0dee44a6/docs/_plugins/include_example.rb
----------------------------------------------------------------------
diff --git a/docs/_plugins/include_example.rb b/docs/_plugins/include_example.rb
index 549f81f..564c866 100644
--- a/docs/_plugins/include_example.rb
+++ b/docs/_plugins/include_example.rb
@@ -20,12 +20,12 @@ require 'pygments'
 
 module Jekyll
   class IncludeExampleTag < Liquid::Tag
-    
+
     def initialize(tag_name, markup, tokens)
       @markup = markup
       super
     end
- 
+
     def render(context)
       site = context.registers[:site]
       config_dir = '../examples/src/main'
@@ -37,7 +37,7 @@ module Jekyll
 
       code = File.open(@file).read.encode("UTF-8")
       code = select_lines(code)
- 
+
       rendered_code = Pygments.highlight(code, :lexer => @lang)
 
       hint = "<div><small>Find full example code at " \
@@ -45,7 +45,7 @@ module Jekyll
 
       rendered_code + hint
     end
- 
+
     # Trim the code block so as to have the same indention, regardless of 
their positions in the
     # code file.
     def trim_codeblock(lines)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to