You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/design/integrating.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -59,9 +59,9 @@ For instance, files that are needed to do correct type checking are modified by
59
59
Monitoring files inside gopls directly has a lot of awkward problems, but the [LSP specification] has methods that allow gopls to request that the client notify it of file system changes, specifically [`workspace/didChangeWatchedFiles`].
60
60
This is currently being added to gopls by a community member, and tracked in [#31553]
Copy file name to clipboardExpand all lines: doc/features/diagnostics.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,7 @@ dorky details and deletia:
131
131
simple problems.
132
132
133
133
For example, when a return statement has too few operands, the
134
-
[fillreturns](https://pkg.go.dev/github.com/gfanton/gnopls/internal/analysis/fillreturns) analyzer can heuristically fill in the missing ones
134
+
[fillreturns](https://pkg.go.dev/github.com/gnoverse/gnopls/internal/analysis/fillreturns) analyzer can heuristically fill in the missing ones
135
135
with suitable values.
136
136
137
137
The actual diagnostics are produced by the type checker,
Copy file name to clipboardExpand all lines: doc/features/transformation.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -496,7 +496,7 @@ Here are some of the technical challenges involved in sound inlining:
496
496
cautious about eliminating references to local variables.
497
497
498
498
This is just a taste of the problem domain. If you're curious, the
499
-
documentation for [github.com/gfanton/gnopls/internal/refactor/inline](https://pkg.go.dev/github.com/gfanton/gnopls/internal/refactor/inline) has
499
+
documentation for [github.com/gnoverse/gnopls/internal/refactor/inline](https://pkg.go.dev/github.com/gnoverse/gnopls/internal/refactor/inline) has
500
500
more detail. All of this is to say, it's a complex problem, and we aim
501
501
for correctness first of all. We've already implemented a number of
502
502
important "tidiness optimizations" and we expect more to follow.
Copy file name to clipboardExpand all lines: doc/refactor-inline.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ challenges involved in sound inlining:
153
153
cautious about eliminating references to local variables.
154
154
155
155
This is just a taste of the problem domain. If you're curious, the
156
-
documentation for [github.com/gfanton/gnopls/internal/refactor/inline](https://pkg.go.dev/github.com/gfanton/gnopls/internal/refactor/inline) has
156
+
documentation for [github.com/gnoverse/gnopls/internal/refactor/inline](https://pkg.go.dev/github.com/gnoverse/gnopls/internal/refactor/inline) has
157
157
more detail. All of this is to say, it's a complex problem, and we aim
158
158
for correctness first of all. We've already implemented a number of
159
159
important "tidiness optimizations" and we expect more to follow.
0 commit comments