You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -59,7 +59,7 @@ A new Pull Request can be made by specifying which changes should be merged into
59
59
60
60
### Forks
61
61
62
-
A Fork is a copy of a GitHub repository that allows the user to make changes to a repository while keeping the original unchanged, the changes are updated to the original repository through pull requests. The participant will solve the Challenges and make contributions to a local Fork of the Hackathon GitHub repository, so that it is possible to keep the solutions organized and avoid conflicts that arise from multiple groups editing the same code. It is recommended to use GitHub environment to create a Fork, the participant has to click on the top right corner of the Hackathon GitHub page:
62
+
A Fork is a copy of a GitHub repository that allows the user to make changes to a repository while keeping the original unchanged, with changes being updated to the original repository through pull requests. The participant will solve the Challenges and make contributions to a local Fork of the Hackathon GitHub repository, so that it is possible to keep the solutions organized and avoid conflicts that arise from multiple groups editing the same code. It is recommended to use GitHub environment to create a Fork, the participant has to click on the top right corner of the Hackathon GitHub page:
Copy file name to clipboardExpand all lines: docs/development/rocketpy_as_developer.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Preparing directory for code editing
31
31
====================================
32
32
33
33
You may create a testing file in any directory, but you must remember that they should not be included in the commits and pull requests unless they are part of the proposed solution.
34
-
With that in mind, it is suggested the creation of a folder with all the testing files, so they can be added in the .gitignore file, which contains the name of all the files and folders that will not be added to the commits. To create the folder, type on the terminal:
34
+
With that in mind, we suggest you to create a folder with all testing files, so they can be added in the .gitignore file, which contains the name of all the files and folders that will not be added to the commits. To create the folder, type on the terminal:
35
35
36
36
.. code-block:: console
37
37
@@ -124,7 +124,7 @@ The motor class contains information about the thrust curve and uses some geomet
124
124
.. code-block:: python
125
125
126
126
Pro75M1670 = SolidMotor(
127
-
thrustSource="../data/motors/Cesaroni_M1670.eng",
127
+
thrustSource="../data/motors/Cesaroni_M1670.eng",#copy here the path to the thrust source file
128
128
burnOut=3.9,
129
129
grainNumber=5,
130
130
grainSeparation=5/1000,
@@ -158,8 +158,8 @@ The first step is to initialize the class with the vital data:
0 commit comments