Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2018-01-18 21:29:48 +0300
committerMark Otto <markdotto@gmail.com>2018-01-18 21:29:48 +0300
commit8a628b943cf31ca0a002c08af661a95772480225 (patch)
tree6d6cddcf8cbfcb392c2d1c1c830441a70eac228a
parent572d00ac7e4ffdb91c1015d83100ea1c279af6ca (diff)
Remove -Pre from Nuget install info since we're stable now /cc @supergibbsv4.0.0
-rw-r--r--docs/4.0/getting-started/download.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/4.0/getting-started/download.md b/docs/4.0/getting-started/download.md
index 8defa9485d..4e893e8c69 100644
--- a/docs/4.0/getting-started/download.md
+++ b/docs/4.0/getting-started/download.md
@@ -92,11 +92,9 @@ composer require twbs/bootstrap:{{ site.current_version }}
If you develop in .NET, you can also install and manage Bootstrap's [CSS](https://www.nuget.org/packages/bootstrap/) or [Sass](https://www.nuget.org/packages/bootstrap.sass/) and JavaScript using [NuGet](https://www.nuget.org/):
{% highlight powershell %}
-Install-Package bootstrap -Pre
+Install-Package bootstrap
{% endhighlight %}
{% highlight powershell %}
-Install-Package bootstrap.sass -Pre
+Install-Package bootstrap.sass
{% endhighlight %}
-
-The `-Pre` is required until Bootstrap v4 has a stable release.