Skip to content

Commit 86e9798

Browse files
committed
fix(notes) to use proper markdown that will render in GitHub
1 parent 808ef85 commit 86e9798

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

chess/5-pregame/pregame.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ Write positive and negative unit tests for each method on your ServerFacade clas
9898

9999
Your tests must be located in the file `client/src/test/java/client/ServerFacadeTests.java`, provided in the starter code.
100100

101-
> [!TIP] `ServerFacadeTests.java` contains code that will automatically start and shutdown your server on a randomly assigned port as part of the test. However, you will still need to start your server using the `Main.main` function when you manually run your client.
101+
> [!TIP]
102+
>
103+
> `ServerFacadeTests.java` contains code that will automatically start and shutdown your server on a randomly assigned port as part of the test. However, you will still need to start your server using the `Main.main` function when you manually run your client.
102104
103105
```java
104106
public class ServerFacadeTests {

chess/chess-github-repository/chess-github-repository.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ You will be most successful in this course if you set aside time each day, or ev
2121

2222
For all of the above reasons, it is required that you use GitHub for your chess project. Additionally, you must use it consistently and frequently.
2323

24-
> [!IMPORTANT] It is a prerequisite for all deliverables that you have at least 10 commits evenly spread across the assignment period for the deliverable.
24+
> [!IMPORTANT]
25+
>
26+
> It is a prerequisite for all deliverables that you have at least 10 commits evenly spread across the assignment period for the deliverable.
2527
2628
If you do not have the required number of commits, or if they are all clustered in a single burst of activity, then you will need to justify the discrepancy before the deliverable will be accepted.
2729

@@ -98,7 +100,9 @@ When you have successfully completed the assignment:
98100

99101
## Videos
100102

101-
> [!NOTE] The "Chess GitHub Repository" video shows screenshots of outdated setup information. Between timestamps 2:16 and 2:26, the instructions for an older and more complicated way of setting up the repo are shown. Read the online version for the most up-to-date instructions.
103+
> [!NOTE]
104+
>
105+
> The "Chess GitHub Repository" video shows screenshots of outdated setup information. Between timestamps 2:16 and 2:26, the instructions for an older and more complicated way of setting up the repo are shown. Read the online version for the most up-to-date instructions.
102106
>
103107
> Additionally, at timestamp 2:48 the video suggests that the GitHub repo url needs to be turned in to Canvas. This is outdated; however, the rest of the discussion about the role of the autograder is correct. Instead, you will submit the GitHub repo directly to the autograder as described in the latest version of the instructions.
104108

instruction/command-line-builds/command-line-builds.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ To get started with Maven, you need to install it. You can find the installation
2020

2121
> [https://maven.apache.org/download.cgi](https://maven.apache.org/download.cgi)
2222
23-
> [!NOTE] When you install IntelliJ, it installed a copy of Maven. If you want to use that installation, then you will have to update your command line path to make it accessible outside of IntelliJ. For example, if you are using a Mac you would include something like the following in your profile file. If you are using Windows then you will need to update the `Environment Variables` in your operating system settings.
23+
> [!NOTE]
24+
>
25+
> When you install IntelliJ, it installed a copy of Maven. If you want to use that installation, then you will have to update your command line path to make it accessible outside of IntelliJ. For example, if you are using a Mac you would include something like the following in your profile file. If you are using Windows then you will need to update the `Environment Variables` in your operating system settings.
2426
2527
```sh
2628
export PATH="$PATH:/Applications/IntelliJ IDEA CE.app/Contents/plugins/maven/lib/maven3/bin"

instruction/curl/curl.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ Putting this all together in a single request would look like the following if y
6060
6161
Take some time to get familiar with Curl. You can use it to test your server, programmatically make batch requests, or to probe and debug how other web services work.
6262
63-
> [!NOTE] Note that when running under Windows Powershell `curl` is mapped to the `Invoke-WebRequest` command. You don't want to use that. Instead type `curl.exe` to actually access Curl.
63+
> [!NOTE]
64+
>
65+
> Note that when running under Windows Powershell `curl` is mapped to the `Invoke-WebRequest` command. You don't want to use that. Instead type `curl.exe` to actually access Curl.
6466
6567
## Videos
6668

0 commit comments

Comments
 (0)