Skip to content

Commit 5ea5918

Browse files
authored
update ContributingToCodePage.md replace src/content/code path by src/code (graphql#1652)
1 parent 810258f commit 5ea5918

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

notes/ContributingToCodePage.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
## Contributing to the Code Page
1+
# Contributing to the Code Page
22

33
Hi, thanks for reading the docs!
44

55
Secondly, we want to provide a really strong overview of all the libraries in the GraphQL eco-system. To make this
66
easy for contributors the code page is automatically generated from a series of markdown files in this repo.
77

88
```sh
9-
$ tree src/content/code
10-
src/content/code
9+
$ tree src/code
10+
src/code
1111
├── language-support
1212
│ ├── c-c
1313
│ │ └── tools
@@ -45,7 +45,7 @@ npm: "graphql-http"
4545

4646
To run an `graphql-http` hello world server:
4747

48-
```bash
48+
```sh
4949
npm install express graphql-http graphql
5050
```
5151

@@ -56,7 +56,7 @@ var express = require("express")
5656
var { createHandler } = require("graphql-http/lib/use/express")
5757
var { buildSchema } = require("graphql")
5858

59-
var schema = buildSchema(`
59+
var schema = buildSchema(/* GraphQL */`
6060
type Query {
6161
hello: String
6262
}

notes/NewSiteArchitecture.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ This page should serve as a high-level view of what resources are available and
164164
- Popular blogs
165165
- Twitter feed
166166
- Calendar of upcoming meetups or conference talks related to GraphQL (encourage edits by community)
167-
- Grid of recorded videos about GraphQL (conf talks, etc).
167+
- Grid of recorded videos about GraphQL (conf talks, etc.).
168168

169169
## Blog
170170

0 commit comments

Comments
 (0)