Skip to content

Commit 7a2f97f

Browse files
committed
small fixes
1 parent e5ff7c0 commit 7a2f97f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

rails6/en/chapter01-introduction.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ As you may guess, the commands above will generate the bare bones of your Rails
175175

176176
== Versioning
177177

178-
Remember that Git helps you track and maintain your code history. Keep in mind that the source code of the application is published on GitHub. You can follow the project on https://github.com/madeindjs/api_on_rails_6[GitHub].
178+
Remember that Git helps you track and maintain your code history. Keep in mind that the source code of the application is published on GitHub. You can follow the project on https://github.com/madeindjs/market_place_api_6[GitHub].
179179

180180
Ruby on Rails initialized the Git directory for you when you used the `rails new` command. This means that you do not need to execute the `git init` command.
181181

@@ -187,7 +187,7 @@ $ git config --global user.name "Type in your name"
187187
$ git config --global user.email "Type in your email"
188188
----
189189

190-
Rails also provide a _.gitignore_ file to ignore some files that we don't want to track. The default _.gitignore_ file should look like the one shown below:
190+
Rails also provide a `.gitignore` file to ignore some files that we don't want to track. The default `.gitignore` file should look like the one shown below:
191191

192192
..gitignore
193193
----
@@ -213,7 +213,7 @@ Rails also provide a _.gitignore_ file to ignore some files that we don't want t
213213
/config/master.key
214214
----
215215

216-
After modifying the _.gitignore_ file, we just need to add the files and commit the changes, the necessary commands are shown below:
216+
After modifying the `.gitignore` file, we just need to add the files and commit the changes, the necessary commands are shown below:
217217

218218
[source,bash]
219219
----

rails6/en/chapter02-api.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ To set the version for the API, we first need to add another directory under the
160160

161161
[source,bash]
162162
----
163-
$ mkdir app/controllers/API/v1
163+
$ mkdir app/controllers/api/v1
164164
----
165165

166166
This way we can namespace our api into different versions very easily, now we just need to add the necessary code to the `routes.rb` file:

rails6/es/chapter01-introduction.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Como puedes adivinar, los anteriores comandos generaran los huesos desnudos de t
179179

180180
== Versionado
181181

182-
Recuerda que Git te ayuda a dar seguimiento y mantener el historial de tu código. Ten en mente que el codigo fuente de la aplicación es publicado en GitHub. Puedes seguir el proyecto en https://github.com/madeindjs/api_on_rails_6[GitHub].
182+
Recuerda que Git te ayuda a dar seguimiento y mantener el historial de tu código. Ten en mente que el codigo fuente de la aplicación es publicado en GitHub. Puedes seguir el proyecto en https://github.com/madeindjs/market_place_api_6[GitHub].
183183

184184
Ruby on Rails inicializa el directorio Git por tí cuando usas el comando `rails new`. Esto significa que no necesitas ejecutar el comando `git init`.
185185

@@ -191,7 +191,7 @@ $ git config --global user.name "Aquí pon tu nombre"
191191
$ git config --global user.email "Aquí pon tu email"
192192
----
193193

194-
Rails también provee un archivo _.gitignore_ para ignorar algunos archivos a los que no queramos dar seguimiento. El archivo _.gitignore_ por defecto puede lucir como se ve a continuación:
194+
Rails también provee un archivo `.gitignore` para ignorar algunos archivos a los que no queramos dar seguimiento. El archivo `.gitignore` por defecto puede lucir como se ve a continuación:
195195

196196
..gitignore
197197
----
@@ -217,7 +217,7 @@ Rails también provee un archivo _.gitignore_ para ignorar algunos archivos a lo
217217
/config/master.key
218218
----
219219

220-
Después de modificar el archivo _.gitignore_ únicamente necesitamos añadir los archivos y hacer _commit_ de los cambios, para ello usamos los siguientes comandos:
220+
Después de modificar el archivo `.gitignore` únicamente necesitamos añadir los archivos y hacer _commit_ de los cambios, para ello usamos los siguientes comandos:
221221

222222
[source,bash]
223223
----

rails6/fr/chapter01-introduction.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Comme vous pouvez le deviner, les commandes ci-dessus généreront les élément
183183

184184
== Contrôle de version
185185

186-
Rappelez-vous que Git vous aide à suivre et à maintenir l'historique de votre code. Gardez à l'esprit que le code source de l'application est publié sur GitHub. Vous pouvez suivre le projet sur https://github.com/madeindjs/api_on_rails_6[GitHub]
186+
Rappelez-vous que Git vous aide à suivre et à maintenir l'historique de votre code. Gardez à l'esprit que le code source de l'application est publié sur GitHub. Vous pouvez suivre le projet sur https://github.com/madeindjs/market_place_api_6[GitHub]
187187

188188
Lorsque vous avez utilisé la commande `rails new`, Ruby on Rails a initialisé le répertoire Git pour vous. Cela signifie que vous n'avez pas besoin d'exécuter la commande `git init`.
189189

@@ -195,7 +195,7 @@ $ git config user.name "Type in your name"
195195
$ git config user.email "Type in your email"
196196
----
197197

198-
Rails fournit également un fichier _.gitignore_ pour ignorer certains fichiers que nous ne voulons pas suivre. Le fichier _.gitignore_ par défaut devrait ressembler à celui illustré ci-dessous :
198+
Rails fournit également un fichier `.gitignore` pour ignorer certains fichiers que nous ne voulons pas suivre. Le fichier `.gitignore` par défaut devrait ressembler à celui illustré ci-dessous :
199199

200200
[source,console]
201201
..gitignore

0 commit comments

Comments
 (0)