Skip to content

Commit 2efe0a3

Browse files
committed
Use HTTPS instead of HTTP in links
1 parent 5ea1adf commit 2efe0a3

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Staticcheck is a state of the art linter for the [Go programming
88
language](https://go.dev/). Using static analysis, it finds bugs and performance issues,
99
offers simplifications, and enforces style rules.
1010

11-
**Financial support by [private and corporate sponsors](http://staticcheck.dev/sponsors) guarantees the tool's continued development.
11+
**Financial support by [private and corporate sponsors](https://staticcheck.dev/sponsors) guarantees the tool's continued development.
1212
Please [become a sponsor](https://github.com/users/dominikh/sponsorship) if you or your company rely on Staticcheck.**
1313

1414

go/ir/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ func (b *builder) expr0(fn *Function, e ast.Expr, tv types.TypeAndValue) Value {
622622
case token.AND: // &X --- potentially escaping.
623623
addr := b.addr(fn, e.X, true)
624624
if _, ok := unparen(e.X).(*ast.StarExpr); ok {
625-
// &*p must panic if p is nil (http://golang.org/s/go12nil).
625+
// &*p must panic if p is nil (https://golang.org/s/go12nil).
626626
// For simplicity, we'll just (suboptimally) rely
627627
// on the side effects of a load.
628628
// TODO(adonovan): emit dedicated nilcheck.

go/ir/doc.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
// THIS INTERFACE IS EXPERIMENTAL AND IS LIKELY TO CHANGE.
1111
//
1212
// For an introduction to SSA form, upon which SSI builds, see
13-
// http://en.wikipedia.org/wiki/Static_single_assignment_form.
13+
// https://en.wikipedia.org/wiki/Static_single_assignment_form.
1414
// This page provides a broader reading list:
15-
// http://www.dcs.gla.ac.uk/~jsinger/ssa.html.
15+
// https://www.dcs.gla.ac.uk/~jsinger/ssa.html.
1616
//
1717
// For an introduction to SSI form, see The static single information
1818
// form by C. Scott Ananian.

go/ir/dom.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ package ir
1010
//
1111
// We use the algorithm described in Lengauer & Tarjan. 1979. A fast
1212
// algorithm for finding dominators in a flowgraph.
13-
// http://doi.acm.org/10.1145/357062.357071
13+
// https://doi.acm.org/10.1145/357062.357071
1414
//
1515
// We also apply the optimizations to SLT described in Georgiadis et
1616
// al, Finding Dominators in Practice, JGAA 2006,
17-
// http://jgaa.info/accepted/2006/GeorgiadisTarjanWerneck2006.10.1.pdf
17+
// https://jgaa.info/accepted/2006/GeorgiadisTarjanWerneck2006.10.1.pdf
1818
// to avoid the need for buckets of size > 1.
1919

2020
import (

go/ir/lift.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ package ir
1212
// Cited papers and resources:
1313
//
1414
// Ron Cytron et al. 1991. Efficiently computing SSA form...
15-
// http://doi.acm.org/10.1145/115372.115320
15+
// https://doi.acm.org/10.1145/115372.115320
1616
//
1717
// Cooper, Harvey, Kennedy. 2001. A Simple, Fast Dominance Algorithm.
1818
// Software Practice and Experience 2001, 4:1-10.
19-
// http://www.hipersoft.rice.edu/grads/publications/dom14.pdf
19+
// https://www.hipersoft.rice.edu/grads/publications/dom14.pdf
2020
//
2121
// Daniel Berlin, llvmdev mailing list, 2012.
22-
// http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-January/046638.html
22+
// https://lists.cs.uiuc.edu/pipermail/llvmdev/2012-January/046638.html
2323
// (Be sure to expand the whole thread.)
2424
//
2525
// C. Scott Ananian. 1997. The static single information form.

internal/gosmith/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
```GoSmith``` generates random, but legal, [Go programs](http://golang.org) to test Go compilers.
1+
```GoSmith``` generates random, but legal, [Go programs](https://golang.org) to test Go compilers.
22

33
Bugs found to date:
44
* [31 bugs](https://code.google.com/p/go/issues/list?can=1&q=label%3AGoSmith+-label%3ADocumentation+-status%3AInvalid&sort=-id&colspec=ID+Status+Stars+Release+Owner+Repo+Summary&cells=tiles) in gc compiler

0 commit comments

Comments
 (0)