Skip to content

Commit a151b7d

Browse files
committed
Fix BUNDLER typo in doc
1 parent 5c01054 commit a151b7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ To run the demo app, set up the database and run the server:
117117

118118
```bash
119119
cd demo
120-
export BUNDLER_GEMFILE=../gemfiles/6.1.gemfile
120+
export BUNDLE_GEMFILE=../gemfiles/6.1.gemfile
121121
rails db:setup
122122
rails s -b 0.0.0.0
123123
```
@@ -127,12 +127,12 @@ To run the demo app in the Docker container:
127127
```bash
128128
docker run --volume "$PWD:/app" --user $UID:`grep ^$USERNAME /etc/passwd | cut -d: -f4` -p 3000:3000 -it bootstrap_form /bin/bash
129129
cd demo
130-
export BUNDLER_GEMFILE=../gemfiles/6.1.gemfile
130+
export BUNDLE_GEMFILE=../gemfiles/6.1.gemfile
131131
rails db:setup
132132
rails s -b 0.0.0.0
133133
```
134134

135-
To use other supported versions of Rails, change the `export BUNDLER_GEMFILE...` line to another gem file.
135+
To use other supported versions of Rails, change the `export BUNDLE_GEMFILE...` line to another gem file.
136136

137137
## Documentation Contributions
138138

0 commit comments

Comments
 (0)