Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Sashko Stubailo committed Dec 18, 2017
1 parent 23625c3 commit 9b04ad3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/utilities/buildASTSchema.js
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,10 @@ function getDeprecationReason(
* Provide true to use preceding comments as the description.
*
*/
export function getDescription(node: ASTNode, options: ?Options): void | string {
export function getDescription(
node: ASTNode,
options: ?Options,
): void | string {
if (node.description) {
return node.description.value;
}
Expand Down

0 comments on commit 9b04ad3

Please sign in to comment.