docs/_docs/variables.md in ufo-3.2.1 vs docs/_docs/variables.md in ufo-3.2.2
- old
+ new
@@ -26,21 +26,21 @@
@cpu = 128
@memory_reservation = 256
@environment = helper.env_file(".env")
```
-When `ufo ship` is ran with `UFO_ENV=production` he `variables/production.rb` will be evaluated and layered on top of the variables defined in `base.rb:
+When `ufo ship` is ran with `UFO_ENV=production` he `variables/production.rb` will be evaluated and layered on top of the variables defined in `base.rb`:
`.ufo/variables/production.rb`:
```ruby
@environment = helper.env_vars(%Q[
RAILS_ENV=production
SECRET_KEY_BASE=secret
])
```
-When `ufo ship` is ran with `UFO_ENV=development` the `variables/development.rb` will be evaluated and layered on top of the variables defined in `base.rb:
+When `ufo ship` is ran with `UFO_ENV=development` the `variables/development.rb` will be evaluated and layered on top of the variables defined in `base.rb`:
`.ufo/variables/development.rb`:
```ruby