Skip to content

Commit

Permalink
fix github url
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Apr 3, 2013
1 parent 8a80f44 commit b1e265f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -136,14 +136,14 @@ difficult to understand.
- Logging of the transform can be enabled with `scalac -Dscala.async.debug=true`.
- Tracing of the ANF transform: `scalac -Dscala.async.trace=true`
- Debug the macro expansion by checking out the project and executing the application
[`TreeInterrogation`](https://github.com/phaller/scala-async/blob/master/src/test/scala/scala/async/TreeInterrogation.scala#L59)
[`TreeInterrogation`](https://github.com/scala/async/blob/master/src/test/scala/scala/async/TreeInterrogation.scala#L59)

## Limitations
- See the [neg](https://github.com/phaller/scala-async/tree/master/src/test/scala/scala/async/neg) test cases for
- See the [neg](https://github.com/scala/async/tree/master/src/test/scala/scala/async/neg) test cases for
for constructs that are not allowed in a async block
- See the [issue list](https://github.com/phaller/scala-async/issues?state=open) for which of these restrictions are planned
- See the [issue list](https://github.com/scala/async/issues?state=open) for which of these restrictions are planned
to be dropped in the next milestone.
- See [#13](https://github.com/phaller/scala-async/issues/13) for why `await` is not possible in closures, and for suggestions on
- See [#13](https://github.com/scala/async/issues/13) for why `await` is not possible in closures, and for suggestions on

This comment has been minimized.

Copy link
@indrajitr

indrajitr Jun 12, 2014

Probably #32 meant here?

ways to structure the code to work around this limitation.

## Building
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Expand Up @@ -34,11 +34,11 @@ scalacOptions ++= Seq("-deprecation", "-unchecked", "-Xlint", "-feature")

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

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

startYear := Some(2012)

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

pomExtra := (
<developers>
Expand All @@ -56,7 +56,7 @@ pomExtra := (
</developer>
</developers>
<scm>
<url>git@github.com:phaller/scala-async.git/</url>
<connection>scm:git:git@github.com:phaller/scala-async.git</connection>
<url>git@github.com:scala/async.git/</url>
<connection>scm:git:git@github.com:scala/async.git</connection>
</scm>
)

0 comments on commit b1e265f

Please sign in to comment.