You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2015/11/18 17:17:07 UTC

flink git commit: [FLINK-2937] Fix Typo in Scala Quickstart Guide (SBT)

Repository: flink
Updated Branches:
  refs/heads/master 7beb0110a -> 2ea458833


[FLINK-2937] Fix Typo in Scala Quickstart Guide (SBT)

This closes #1373


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/2ea45883
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/2ea45883
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/2ea45883

Branch: refs/heads/master
Commit: 2ea4588335f7d82da84f77ef11b3848efced7f94
Parents: 7beb011
Author: zentol <ch...@apache.org>
Authored: Wed Nov 18 11:21:55 2015 +0100
Committer: zentol <ch...@apache.org>
Committed: Wed Nov 18 17:15:56 2015 +0100

----------------------------------------------------------------------
 docs/quickstart/scala_api_quickstart.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/2ea45883/docs/quickstart/scala_api_quickstart.md
----------------------------------------------------------------------
diff --git a/docs/quickstart/scala_api_quickstart.md b/docs/quickstart/scala_api_quickstart.md
index 63f4d55..e67c99a 100644
--- a/docs/quickstart/scala_api_quickstart.md
+++ b/docs/quickstart/scala_api_quickstart.md
@@ -144,7 +144,7 @@ To build and run applications with SBT instead of Maven is pretty straight forwa
 libraryDependencies ++= Seq("org.apache.flink" % "flink-scala" % "{{site.version}}", "org.apache.flink" % "flink-clients" % "{{site.version}}") 
 ~~~
 
-Now the application can be executed by `sbt run`. By default SBT runs an application in the same JVM itself is running in. This can lead to lass loading issues with Flink. To avoid these, append the following line to `build.sbt`:
+Now the application can be executed by `sbt run`. By default SBT runs an application in the same JVM itself is running in. This can lead to class loading issues with Flink. To avoid these, append the following line to `build.sbt`:
 
 ~~~scala
 fork in run := true