Skip to content

Commit

Permalink
Fixup some documentation urls that still refer to "master" branch (#176)
Browse files Browse the repository at this point in the history
* Fixup some documentation urls that still refer to "master" branch

* Inadvertently changed - antd has not renamed master
  • Loading branch information
jannotti authored Jun 25, 2020
1 parent 58699dd commit 7ebee84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions @app/client/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const Home: NextPage = () => {

<Title level={4}>
This page:{" "}
<a href="https://github.com/graphile/starter/blob/master/@app/client/src/pages/index.tsx">
<a href="https://github.com/graphile/starter/blob/main/@app/client/src/pages/index.tsx">
<code>@app/client/src/pages/index.tsx</code>
</a>
</Title>
Expand All @@ -91,7 +91,7 @@ const Home: NextPage = () => {

<Title level={4}>
The server:{" "}
<a href="https://github.com/graphile/starter/blob/master/@app/server/src/index.ts">
<a href="https://github.com/graphile/starter/blob/main/@app/server/src/index.ts">
<code>@app/server/src/index.ts</code>
</a>
</Title>
Expand All @@ -115,7 +115,7 @@ const Home: NextPage = () => {
easiest way is to run <code>yarn db uncommit</code> which will undo
this initial migration and move its content back to current.sql for
you to modify. Please see{" "}
<a href="https://github.com/graphile/migrate/blob/master/README.md">
<a href="https://github.com/graphile/migrate/blob/main/README.md">
the graphile-migrate documentation
</a>
.
Expand Down
2 changes: 1 addition & 1 deletion @app/db/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ may prefer to switch this out for your preferred migration framework such as
[flyway](https://flywaydb.org/) or many many many others.

Should you decide to stick with Graphile Migrate, we strongly encourage you to
[read the Graphile Migrate README](https://github.com/graphile/migrate/blob/master/README.md)
[read the Graphile Migrate README](https://github.com/graphile/migrate/blob/main/README.md)
before attempting to write your own migrations. Graphile Migrate works in quite
a different way to many other migration frameworks, and relys on your discipline
and SQL knowledge to work well.
Expand Down
2 changes: 1 addition & 1 deletion @app/db/migrations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This folder contains the database migrations. We're using the `graphile-migrate`
project to produce these; we highly recommend you read the README before
implementing your own migrations:

https://github.com/graphile/migrate/blob/master/README.md
https://github.com/graphile/migrate/blob/main/README.md

The main file you'll be working with is `current.sql`.

Expand Down

0 comments on commit 7ebee84

Please sign in to comment.