aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2013-04-03 13:03:53 -0700
committerPhilipp Haller <hallerp@gmail.com>2013-04-03 13:03:53 -0700
commit3eabc750f4ba79c72b5541bc0971dfadd2d6f6ba (patch)
treeb979e2fcbf0892968280e4d276475d2fffb582d1
parent8a80f4405203afad4baf3c32e0372475cb70fc1b (diff)
parentb1e265f70394432d3e945ca5178c78c58f1fe573 (diff)
downloadscala-async-3eabc750f4ba79c72b5541bc0971dfadd2d6f6ba.tar.gz
scala-async-3eabc750f4ba79c72b5541bc0971dfadd2d6f6ba.tar.bz2
scala-async-3eabc750f4ba79c72b5541bc0971dfadd2d6f6ba.zip
Merge pull request #1 from xuwei-k/fix-github-url
fix github url
-rw-r--r--README.md8
-rw-r--r--build.sbt8
2 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 8c36a66..1bd68fd 100644
--- a/README.md
+++ b/README.md
@@ -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
ways to structure the code to work around this limitation.
## Building
diff --git a/build.sbt b/build.sbt
index ae0916a..f1ded58 100644
--- a/build.sbt
+++ b/build.sbt
@@ -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>
@@ -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>
)