summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-07-30 09:04:56 +0000
committerBundlerbot <bot@bundler.io>2019-07-30 09:04:56 +0000
commit78675d764944335451a4ccea79d11352ec6da55e (patch)
tree8d121fdb2f7f5e631cf5e22ce622dd7cc75f8e1e
parent3af2211195811e1e0618c166387a53a677ab1438 (diff)
parent88dbfa18b4e61f0cd9aa8998f9e0f00ea73729b7 (diff)
downloadbundler-78675d764944335451a4ccea79d11352ec6da55e.tar.gz
Merge #7268
7268: Fix typo in binstubs documentation r=hsbt a=scotttesler ### What was the end-user problem that led to this PR? There is a typo in the [binstubs documentation](https://bundler.io/v2.0/man/bundle-binstubs.1.html). It currently reads > This gives you a file that can **by** run directly It should read > This gives you a file that can **be** run directly ![Screen Shot 2019-07-29 at 3 14 24 PM](https://user-images.githubusercontent.com/586779/62079346-2452b180-b214-11e9-84c6-e2661c60eb4a.png) ### What is your fix for the problem, implemented in this PR? Fix the typo in the RONN file that is used to generate this documentation. Co-authored-by: Scott Tesler <scottiet123@gmail.com>
-rw-r--r--man/bundle-binstubs.ronn2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/bundle-binstubs.ronn b/man/bundle-binstubs.ronn
index c1ae0988cd..8909fdc3da 100644
--- a/man/bundle-binstubs.ronn
+++ b/man/bundle-binstubs.ronn
@@ -10,7 +10,7 @@ bundle-binstubs(1) -- Install the binstubs of the listed gems
Binstubs are scripts that wrap around executables. Bundler creates a
small Ruby file (a binstub) that loads Bundler, runs the command,
and puts it into `bin/`. Binstubs are a shortcut-or alternative-
-to always using `bundle exec`. This gives you a file that can by run
+to always using `bundle exec`. This gives you a file that can be run
directly, and one that will always run the correct gem version
used by the application.