Skip to content

Commit b624f2d

Browse files
committed
replace leftover references to master
1 parent 90dc812 commit b624f2d

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
gh-pages:
4040
needs: test
4141
runs-on: ubuntu-latest
42-
if: github.ref == 'refs/heads/master'
42+
if: github.ref == 'refs/heads/main'
4343
steps:
4444
- uses: actions/download-artifact@v2
4545
with:

Documentation/forms-intro.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ <h4>Go to the source</h4>
210210

211211
<li>
212212
<a
213-
href="https://github.com/solid/solid-ui/blob/master/src/widgets/forms.js"
213+
href="https://github.com/solid/solid-ui/blob/main/src/widgets/forms.js"
214214
>
215215
The implementation code</a
216216
>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"test": "npm run build && npm run lint && npm run jest",
2525
"doc": "typedoc --out ./Documentation/api/ ./src/ --stripInternal",
2626
"prepublishOnly": "npm test && npm run build",
27-
"postpublish": "git push origin master --follow-tags",
27+
"postpublish": "git push origin main --follow-tags",
2828
"storybook": "start-storybook -p 6006",
2929
"build-storybook": "build-storybook --output-dir ./examples/storybook"
3030
},

src/acl/access-groups.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export interface AccessGroupsOptions {
5151

5252
/**
5353
* Renders the table of Owners, Editors, Posters, Submitters, Viewers
54-
* for https://github.com/solid/userguide/blob/master/views/sharing/userguide.md
54+
* for https://github.com/solid/userguide/blob/main/views/sharing/userguide.md
5555
*/
5656
export class AccessGroups {
5757
private readonly defaults: boolean

src/acl/acl-control.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Functions for rendering the ACL User Interface.
3-
* See https://github.com/solid/userguide/blob/master/views/sharing/userguide.md#view
3+
* See https://github.com/solid/userguide/blob/main/views/sharing/userguide.md#view
44
* for a screenshot.
55
* @packageDocumentation
66
*/

src/acl/add-agent-buttons.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import * as debug from '../debug'
1515

1616
/**
1717
* Renders the Sharing pane's "+" button and the menus behind it,
18-
* see https://github.com/solid/userguide/blob/master/views/sharing/userguide.md#add
18+
* see https://github.com/solid/userguide/blob/main/views/sharing/userguide.md#add
1919
*/
2020
export class AddAgentButtons {
2121
private readonly rootElement: HTMLElement

src/acl/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Contains CSS styles for the Sharing pane,
3-
* see https://github.com/solid/userguide/blob/master/views/sharing/userguide.md
3+
* see https://github.com/solid/userguide/blob/main/views/sharing/userguide.md
44
* @packageDocumentation
55
*/
66
export const styles = {

src/authn/authn.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ export async function logInLoadPreferences (context: AuthenticationContext): Pro
245245
* Resolves with the same context, outputting
246246
* output: index.public, index.private
247247
*
248-
* @see https://github.com/solid/solid/blob/master/proposals/data-discovery.md#discoverability
248+
* @see https://github.com/solid/solid/blob/main/proposals/data-discovery.md#discoverability
249249
*/
250250
async function loadIndex (
251251
context: AuthenticationContext,
@@ -278,7 +278,7 @@ export async function loadTypeIndexes (context: AuthenticationContext) {
278278

279279
/**
280280
* Resolves with the same context, outputting
281-
* @see https://github.com/solid/solid/blob/master/proposals/data-discovery.md#discoverability
281+
* @see https://github.com/solid/solid/blob/main/proposals/data-discovery.md#discoverability
282282
*/
283283
async function ensureTypeIndexes (context: AuthenticationContext): Promise<AuthenticationContext> {
284284
await ensureOneTypeIndex(context, true)
@@ -292,7 +292,7 @@ async function ensureTypeIndexes (context: AuthenticationContext): Promise<Authe
292292
* Many reasons for failing including script not having permission etc
293293
*
294294
* Adds its output to the context
295-
* @see https://github.com/solid/solid/blob/master/proposals/data-discovery.md#discoverability
295+
* @see https://github.com/solid/solid/blob/main/proposals/data-discovery.md#discoverability
296296
*/
297297
async function ensureOneTypeIndex (context: AuthenticationContext, isPublic: boolean): Promise<AuthenticationContext | void> {
298298
async function makeIndexIfNecessary (context, isPublic) {
@@ -365,7 +365,7 @@ async function ensureOneTypeIndex (context: AuthenticationContext, isPublic: boo
365365
* Returns promise of context with arrays of symbols
366366
*
367367
* 2016-12-11 change to include forClass arc a la
368-
* https://github.com/solid/solid/blob/master/proposals/data-discovery.md
368+
* https://github.com/solid/solid/blob/main/proposals/data-discovery.md
369369
*/
370370
export async function findAppInstances (
371371
context: AuthenticationContext,
@@ -465,7 +465,7 @@ export async function registerInTypeIndex (
465465
const index = indexes[0]
466466
const registration = widgets.newThing(index)
467467
const ins = [
468-
// See https://github.com/solid/solid/blob/master/proposals/data-discovery.md
468+
// See https://github.com/solid/solid/blob/main/proposals/data-discovery.md
469469
st(registration, ns.rdf('type'), ns.solid('TypeRegistration'), index),
470470
st(registration, ns.solid('forClass'), theClass, index),
471471
st(registration, ns.solid('instance'), instance, index)

0 commit comments

Comments
 (0)