Merge pull request #5889 from jbampton/remove-blank-lines

Remove blank line from the top of Ruby files
This commit is contained in:
Yukihiro "Matz" Matsumoto
2022-12-29 14:46:00 +09:00
committed by GitHub
4 changed files with 0 additions and 4 deletions
-1
View File
@@ -1,4 +1,3 @@
def fib n
return n if n < 2
fib(n-2) + fib(n-1)
-1
View File
@@ -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
View File
@@ -1,4 +1,3 @@
assert('Comparable#<', '15.3.3.2.1') do
class Foo
include Comparable