commit 280357da2fb352d0395ff04e404aa523a2d530df parent 9cafa647f072603a82137ef918725117f3d6ca83 Author: Frederic Cambus <fred@statdns.com> Date: Mon, 9 Apr 2018 22:51:29 +0200 Remove redundant return Diffstat:
M | bin/motyl | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/motyl b/bin/motyl @@ -20,7 +20,7 @@ require 'yaml' # Load and process Markdown file def markdown(path) - return Kramdown::Document.new(File.read(path), syntax_highlighter: 'rouge').to_html + Kramdown::Document.new(File.read(path), syntax_highlighter: 'rouge').to_html end # Display status message