Skip to content

Commit 0390da9

Browse files
Updated all http URLs to https (#1616)
1 parent 68c2fad commit 0390da9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ ensure your pull request matches the style guides, run `npm run prettier`.
7676
* 80 character line length strongly preferred.
7777
* Prefer `'` over `"`
7878
* ES6 syntax when possible. However do not rely on ES6-specific functions to be available.
79-
* Use [Flow types](http://flowtype.org/).
79+
* Use [Flow types](https://flowtype.org/).
8080
* Use semicolons;
8181
* Trailing commas,
8282
* Avd abbr wrds.
@@ -90,7 +90,7 @@ then use `npm version patch|minor|major` in order to increment the version in
9090
package.json and tag and commit a release. Then `git push && git push --tags`
9191
this change so Travis CI can deploy to NPM. *Do not run `npm publish` directly.*
9292
Once published, add [release notes](https://github.com/graphql/graphql-js/tags).
93-
Use [semver](http://semver.org/) to determine which version part to increment.
93+
Use [semver](https://semver.org/) to determine which version part to increment.
9494

9595
Example for a patch release:
9696

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
We want to keep signal strong in the GitHub issue tracker – to make sure that it remains the best place to track bugs and features that affect development.
44

5-
If you have a question on how to use GraphQL, please [post it to Stack Overflow](https://stackoverflow.com/questions/ask?tags=graphql) with the tag [#graphql](http://stackoverflow.com/questions/tagged/graphql).
5+
If you have a question on how to use GraphQL, please [post it to Stack Overflow](https://stackoverflow.com/questions/ask?tags=graphql) with the tag [#graphql](https://stackoverflow.com/questions/tagged/graphql).
66

77
Please do not post general questions directly as GitHub issues. They may sit for weeks unanswered, or may be spontaneously closed without answer.
88

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
The JavaScript reference implementation for GraphQL, a query language for APIs created by Facebook.
44

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

99
See more complete documentation at https://graphql.org/ and
1010
https://graphql.org/graphql-js/.
1111

12-
Looking for help? Find resources [from the community](http://graphql.org/community/).
12+
Looking for help? Find resources [from the community](https://graphql.org/community/).
1313

1414

1515
## Getting Started

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "http://github.com/graphql/graphql-js.git"
15+
"url": "https://github.com/graphql/graphql-js.git"
1616
},
1717
"keywords": [
1818
"graphql",

src/type/scalars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export const GraphQLFloat = new GraphQLScalarType({
107107
description:
108108
'The `Float` scalar type represents signed double-precision fractional ' +
109109
'values as specified by ' +
110-
'[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point). ',
110+
'[IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). ',
111111
serialize: serializeFloat,
112112
parseValue: coerceFloat,
113113
parseLiteral(ast) {

0 commit comments

Comments
 (0)