Skip to content

Commit b1e265f

Browse files
committed
fix github url
1 parent 8a80f44 commit b1e265f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@ difficult to understand.
136136
- Logging of the transform can be enabled with `scalac -Dscala.async.debug=true`.
137137
- Tracing of the ANF transform: `scalac -Dscala.async.trace=true`
138138
- Debug the macro expansion by checking out the project and executing the application
139-
[`TreeInterrogation`](https://github.com/phaller/scala-async/blob/master/src/test/scala/scala/async/TreeInterrogation.scala#L59)
139+
[`TreeInterrogation`](https://github.com/scala/async/blob/master/src/test/scala/scala/async/TreeInterrogation.scala#L59)
140140

141141
## Limitations
142-
- See the [neg](https://github.com/phaller/scala-async/tree/master/src/test/scala/scala/async/neg) test cases for
142+
- See the [neg](https://github.com/scala/async/tree/master/src/test/scala/scala/async/neg) test cases for
143143
for constructs that are not allowed in a async block
144-
- See the [issue list](https://github.com/phaller/scala-async/issues?state=open) for which of these restrictions are planned
144+
- See the [issue list](https://github.com/scala/async/issues?state=open) for which of these restrictions are planned
145145
to be dropped in the next milestone.
146-
- See [#13](https://github.com/phaller/scala-async/issues/13) for why `await` is not possible in closures, and for suggestions on
146+
- See [#13](https://github.com/scala/async/issues/13) for why `await` is not possible in closures, and for suggestions on
147147
ways to structure the code to work around this limitation.
148148

149149
## Building

Diff for: build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ scalacOptions ++= Seq("-deprecation", "-unchecked", "-Xlint", "-feature")
3434

3535
description := "An asynchronous programming facility for Scala, in the spirit of C# await/async"
3636

37-
homepage := Some(url("http://github.com/phaller/scala-async"))
37+
homepage := Some(url("http://github.com/scala/async"))
3838

3939
startYear := Some(2012)
4040

41-
licenses +=("Scala license", url("http://github.com/phaller/scala-async/LICENCE"))
41+
licenses +=("Scala license", url("https://github.com/scala/async/blob/master/LICENSE"))
4242

4343
pomExtra := (
4444
<developers>
@@ -56,7 +56,7 @@ pomExtra := (
5656
</developer>
5757
</developers>
5858
<scm>
59-
<url>git@github.com:phaller/scala-async.git/</url>
60-
<connection>scm:git:git@github.com:phaller/scala-async.git</connection>
59+
<url>git@github.com:scala/async.git/</url>
60+
<connection>scm:git:git@github.com:scala/async.git</connection>
6161
</scm>
6262
)

0 commit comments

Comments
 (0)