Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 339 Bytes

File metadata and controls

34 lines (28 loc) · 339 Bytes

Fix between empty lines in description (#13013 by @chimurai)

# Input
"""
First line

Second Line
"""
type Person {
  name: String
}

# Prettier 2.7.0
"""
First line
Second Line
"""
type Person {
  name: String
}


# Prettier main
"""
First line

Second Line
"""
type Person {
  name: String
}