mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Merge pull request #5889 from jbampton/remove-blank-lines
Remove blank line from the top of Ruby files
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
|
||||
def fib n
|
||||
return n if n < 2
|
||||
fib(n-2) + fib(n-1)
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
# Cross-compile using MinGW and test using Wine.
|
||||
#
|
||||
# Steps:
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
def self.include(*modules)
|
||||
self.class.include(*modules)
|
||||
end
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
assert('Comparable#<', '15.3.3.2.1') do
|
||||
class Foo
|
||||
include Comparable
|
||||
|
||||
Reference in New Issue
Block a user