about summary refs log tree commit diff
path: root/doc/languages-frameworks/ruby.section.md
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2023-11-09 21:48:05 +0100
committerGitHub <noreply@github.com>2023-11-09 21:48:05 +0100
commit97b0ae26f7c8a1682b5437a64edcd73ab1798c9b (patch)
treeb7a421f5dd7358d9c2099c4717aa49525addc700 /doc/languages-frameworks/ruby.section.md
parent3dc0248dbc70fdba6d1a668ed00b4678dfae098c (diff)
downloadnixlib-97b0ae26f7c8a1682b5437a64edcd73ab1798c9b.tar
nixlib-97b0ae26f7c8a1682b5437a64edcd73ab1798c9b.tar.gz
nixlib-97b0ae26f7c8a1682b5437a64edcd73ab1798c9b.tar.bz2
nixlib-97b0ae26f7c8a1682b5437a64edcd73ab1798c9b.tar.lz
nixlib-97b0ae26f7c8a1682b5437a64edcd73ab1798c9b.tar.xz
nixlib-97b0ae26f7c8a1682b5437a64edcd73ab1798c9b.tar.zst
nixlib-97b0ae26f7c8a1682b5437a64edcd73ab1798c9b.zip
doc: avoid 'simply' (#266434)
While the word 'simply' is usually added to encourage readers, it often has the
opposite effect and may even appear condescending, especially when the reader
runs into trouble trying to apply the suggestions from the documentation. It is
almost always an improvement to simply drop the word from the sentence.

(there are more possible improvements like this, we can apply those in separate
PRs)
Diffstat (limited to 'doc/languages-frameworks/ruby.section.md')
-rw-r--r--doc/languages-frameworks/ruby.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/languages-frameworks/ruby.section.md b/doc/languages-frameworks/ruby.section.md
index d3b896686c06..920c84eee689 100644
--- a/doc/languages-frameworks/ruby.section.md
+++ b/doc/languages-frameworks/ruby.section.md
@@ -94,7 +94,7 @@ $ bundle lock
 $ bundix
 ```
 
-If you already have a `Gemfile.lock`, you can simply run `bundix` and it will work the same.
+If you already have a `Gemfile.lock`, you can run `bundix` and it will work the same.
 
 To update the gems in your `Gemfile.lock`, you may use the `bundix -l` flag, which will create a new `Gemfile.lock` in case the `Gemfile` has a more recent time of modification.
 
@@ -251,7 +251,7 @@ source 'https://rubygems.org' do
 end
 ```
 
-If you want to package a specific version, you can use the standard Gemfile syntax for that, e.g. `gem 'mdl', '0.5.0'`, but if you want the latest stable version anyway, it's easier to update by simply running the `bundle lock` and `bundix` steps again.
+If you want to package a specific version, you can use the standard Gemfile syntax for that, e.g. `gem 'mdl', '0.5.0'`, but if you want the latest stable version anyway, it's easier to update by running the `bundle lock` and `bundix` steps again.
 
 Now you can also make a `default.nix` that looks like this: