Skip to content

Commit 8c4fb60

Browse files
dkgifacebook-github-bot
authored andcommitted
prepare for branch move master -> main
Summary: Hoping I got all relevant references. Reviewed By: arthaud Differential Revision: D30115011 fbshipit-source-id: 69535e269af6061c78f23f0f0728a8962d3da36a
1 parent e661092 commit 8c4fb60

File tree

17 files changed

+38
-38
lines changed

17 files changed

+38
-38
lines changed

.github/workflows/lint.yml

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

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88

99
workflow_dispatch:
1010

.github/workflows/publish_website.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: publish website
2-
1+
name: publish website
2+
33
on:
44
push:
5-
branches: [ master ]
6-
5+
branches: [ main ]
6+
77
workflow_dispatch:
88

99
jobs:

.github/workflows/pyre.yml

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

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88

99
workflow_dispatch:
1010

.github/workflows/pysa.yml

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

33
on:
44
push:
5-
branches: [ test-2, master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88

99
workflow_dispatch:
1010

.github/workflows/tests.yml

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

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88

99
workflow_dispatch:
1010

CONTRIBUTING.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ posible.
99

1010
Aceptamos activamente sus solicitudes de extracción.
1111

12-
1. Fork el repositorio y crear su rama de `master`.
12+
1. Fork el repositorio y crear su rama de `main`.
1313
2. Si ha agregado un código que debe probarse, agregue pruebas.
1414
3. Si ha cambiado las APIs, actualice la documentación.
1515
4. Asegúrese de que el conjunto de pruebas pase (consulte [la siguiente sección](#ejecución-de-pruebas)).

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ possible.
77
## Pull Requests
88
We actively welcome your pull requests.
99

10-
1. Fork the repo and create your branch from `master`.
10+
1. Fork the repo and create your branch from `main`.
1111
2. If you've added code that should be tested, add tests.
1212
3. If you've changed APIs, update the documentation.
1313
4. Ensure the test suite passes (please see [the following section](#running-tests)).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
55

66
<p align="center">
7-
<img src="https://raw.githubusercontent.com/facebook/pyre-check/master/logo.png">
7+
<img src="https://raw.githubusercontent.com/facebook/pyre-check/main/logo.png">
88
</p>
99

1010
Pyre is a performant type checker for Python compliant with [PEP 484](https://www.python.org/dev/peps/pep-0484/). Pyre can analyze codebases with millions of lines of code incrementally – providing instantaneous feedback to developers as they write code.

documentation/pysa_tutorial/exercise3/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ standard library, and many open source libraries. Since the previous exercises
1616
already covered those concepts, from this exercise forward we will be relying on
1717
pre-written sources, sinks, and rules where we can. You can look at the
1818
collection of pre-written
19-
[`taint.config`](https://github.com/facebook/pyre-check/blob/master/stubs/taint/taint.config)
19+
[`taint.config`](https://github.com/facebook/pyre-check/blob/main/stubs/taint/taint.config)
2020
and `*.pysa` files in the
21-
[`stubs/taint`](https://github.com/facebook/pyre-check/tree/master/stubs/taint)
21+
[`stubs/taint`](https://github.com/facebook/pyre-check/tree/main/stubs/taint)
2222
folder in this repository. If you are curious about what changed between this
2323
and the previous exercise to allow us to take advantage of those pre-written
2424
files, compare the `.pyre_configuration` files.

documentation/website/docs/formal/python_semantic/Expression.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Inductive unary_operator :=
3232

3333
(** * Expressions
3434
More will be added later. See
35-
https://github.com/facebook/pyre-check/blob/master/ast/expression.mli#L216
35+
https://github.com/facebook/pyre-check/blob/main/ast/expression.mli#L216
3636
*)
3737
Inductive t: Set :=
3838
| BooleanOperator: forall (left: t) (op: boolean_operator) (right: t), t
@@ -84,7 +84,7 @@ Proof.
8484
induction l as [ | hd tl hi]; simpl in *; [ now idtac | ].
8585
now rewrite hi.
8686
Qed.
87-
87+
8888
Coercion to_list: tlist >-> list.
8989
End ListHelpers.
9090
(* end hide *)

0 commit comments

Comments
 (0)