Skip to content

Commit 1de281b

Browse files
committed
build status badge for master
1 parent 43992e3 commit 1de281b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GraphQL, a query language created by Facebook for describing data requirements
55
on complex application data models.
66

77
[![npm version](https://badge.fury.io/js/graphql.svg)](http://badge.fury.io/js/graphql)
8-
[![Build Status](https://travis-ci.org/graphql/graphql-js.svg)](https://travis-ci.org/graphql/graphql-js)
8+
[![Build Status](https://travis-ci.org/graphql/graphql-js.svg?branch=master)](https://travis-ci.org/graphql/graphql-js?branch=master)
99
[![Coverage Status](https://coveralls.io/repos/graphql/graphql-js/badge.svg?branch=master)](https://coveralls.io/r/graphql/graphql-js?branch=master)
1010

1111
See more complete documentation at http://graphql.org/ and
@@ -89,8 +89,8 @@ var schema = new GraphQLSchema({
8989
```
9090

9191
This defines a simple schema with one type and one field, that resolves
92-
to a fixed value. The `resolve` function can return a value, a promise,
93-
or an array of promises. A more complex example is included in the top
92+
to a fixed value. The `resolve` function can return a value, a promise,
93+
or an array of promises. A more complex example is included in the top
9494
level [tests](src/__tests__) directory.
9595

9696
Then, serve the result of a query against that type schema.

0 commit comments

Comments
 (0)