Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions website/src/components/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const featuresList = [
image="gifs/learning_curve.gif" title="No learning curve"
key="curve" education="true">
<p>
Scala CLI does not use complex configuration language, its options are simple and self-explanatory
Scala CLI does not use a complex configuration language, its options are simple and self-explanatory.
</p>
<p>
There are no big differences in running repl or .scala files so expanding the results of repl session into a small project does not require learning new concepts from Scala CLI perspective
Expand All @@ -75,16 +75,16 @@ const featuresList = [
<ImageBox
image="gifs/powerful_scripts.gif" title="Scripts are as powerful as other programs" key="scripts-as-apps" scripting="true">
<p>
Scripts in Scala CLI can use dependencies and other features as standard Scala programs. Scala CLI is command-line first giving access to all its features without need for any configuration file or specific project structure.
Scripts in Scala CLI can use dependencies and other features as standard Scala programs. Scala CLI is command-line first, giving access to all its features without the need for any configuration files or specific project structure.
</p>
</ImageBox>,
<ImageBox
image="gifs/embeddable_scripts.gif" title="Embeddable Scripts" key="embed-scripts" scripting="true">
<p>
Scala CLI can be set up in shebang lines, making your *.scala or *.sc files runnable
Scala CLI can be set up in shebang lines, making your *.scala or *.sc (or even .java or .md!) files runnable.
</p>
<p>
Scala CLI supports piping inputs and is designed to be embeddable in other scripts, turning Scala into proper scripting language
Scala CLI supports piping inputs and is designed to be embeddable in other scripts, turning Scala into proper scripting language.
</p>
</ImageBox>,
// <ImageBox
Expand All @@ -106,7 +106,7 @@ const featuresList = [
With Scala CLI, configuration can be included in source code so complex examples can be self-contained and shipped as e.g. gist. Moreover, Scala CLI can compile, run and test gists without any manual work!
</p>
<p>
Scala CLI is a perfect tool to submit and reproduce bugs
Scala CLI is the perfect tool to submit and reproduce bugs.
</p>
</ImageBox>

Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ const Index = (props) => {

<SectionAbout title="Why Scala CLI?">
<p>
Scala CLI combines <em>all</em> the features you need to learn and use Scala in your scripts, playgrounds and (single-module) projects.
Scala CLI combines <em>all</em> of the features you need to learn and use Scala in your scripts, playgrounds and (single-module) projects.
</p>
<p>
To get started you can read <a href="/docs/overview">the documentation</a>, or just <a href="/install">install</a> and enjoy <code>scala-cli</code>.
</p>
<p>
Scala CLI will soon become the default Scala runner and will be shipped as `scala` (<a href="https://virtuslab.com/blog/scala-cli-the-new-scala-runner/">read more</a>).
Scala CLI is the default Scala runner and is being shipped as <code>scala</code> along with <code>scalac</code> as part of the official language installation since <a href="https://github.com/scala/scala3/releases/tag/3.5.0">Scala 3.5.0</a>. (<a href="/docs/reference/scala-command/">read more</a>).
</p>
</SectionAbout>

Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Index = (props) => {
return <UseCase
title="Single-module projects with Scala CLI"
description="Page describing why Scala CLI is good for maintaining single-module projects."
headline="Fight with your bugs, not with your buildtool"
headline="Fight with your bugs, not with your build tool"
image="gifs/projects.gif"
id="projects"
>
Expand Down
Loading