Skip to content

Commit

Permalink
Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
DanWahlin committed Oct 30, 2023
1 parent 63e4772 commit 056e74e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Adventures/2-Intermediate/The-Scrolls-of-Eldoria.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ You, a young sorcerer's apprentice, have been given the task to retrieve and dec
### Specifications

1. **Data Retrieval:**
- Use the magical HTTP call to fetch the scroll's content. You'll find the scroll in the Great Eldorian Library's `https://raw.githubusercontent.com/DanWahlin/CopilotAdventures/main/Data/scrolls.txt` location.
- Use the magical HTTP call to fetch the scroll's content. You'll find the scroll in the Great Eldorian Library's `https://raw.githubusercontent.com/microsoft/CopilotAdventures/main/Data/scrolls.txt` location.
- The content will be in text format.

2. **Deciphering the Scroll:**
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ Welcome to Copilot Adventures! This series of coding adventures is all about lea

To get started, enter the "adventure arena" by clicking the button below. This will create a GitHub Codespace that you can work in. Once it loads select the **Create codespace** button.

[![Enter Adventure Arena](https://img.shields.io/static/v1?style=for-the-badge&label=Enter+Adventure+Arena&message=Open&color=brightgreen&logo=github)](https://codespaces.new/DanWahlin/CopilotAdventures)
[![Enter Adventure Arena](https://img.shields.io/static/v1?style=for-the-badge&label=Enter+Adventure+Arena&message=Open&color=brightgreen&logo=github)](https://codespaces.new/microsoft/CopilotAdventures)

**NOTE:** You can use 60 hours of GitHub Codespaces [for free](https://github.com/features/codespaces#pricing) each month.

If you'd prefer, you can clone the repo and run locally:

```bash
git clone https://github.com/danwahlin/copilotadventures
git clone https://github.com/microsoft/copilotadventures
```

### 2. Choose an Adventure
Expand Down Expand Up @@ -74,7 +74,7 @@ Read Your Copilot Adventure description, the high-Level steps to perform, and th
Perform the following steps:

- Publish your adventure solution to a GitHub repo.
- Visit https://github.com/DanWahlin/CopilotAdventures/issues and select `New Issue`.
- Visit https://github.com/microsoft/CopilotAdventures/issues and select `New Issue`.
- Use the following naming convention for the issue title.

```
Expand Down
2 changes: 1 addition & 1 deletion Solutions/CSharp/The-Scrolls-Of-Eldoria.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private static async Task FetchAndDecipherScroll(string url)

public static void Run()
{
string url = "https://raw.githubusercontent.com/DanWahlin/CopilotAdventures/main/Data/scrolls.txt";
string url = "https://raw.githubusercontent.com/microsoft/CopilotAdventures/main/Data/scrolls.txt";
FetchAndDecipherScroll(url).Wait();
}
}
2 changes: 1 addition & 1 deletion Solutions/JavaScript/The-Scrolls-of-Eldoria.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ async function fetchAndDecipherScroll(url) {
}

// URL to the Eldorian Web of Knowledge (Replace with actual URL)
const url = 'https://raw.githubusercontent.com/DanWahlin/CopilotAdventures/main/Data/scrolls.txt';
const url = 'https://raw.githubusercontent.com/microsoft/CopilotAdventures/main/Data/scrolls.txt';
fetchAndDecipherScroll(url);
2 changes: 1 addition & 1 deletion Solutions/Python/The-Scrolls-Of-Eldoria.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ def fetch_and_decipher_scroll(url):
print(f'An error occurred: {err}')

# URL to the Eldorian Web of Knowledge (Replace with actual URL)
url = 'https://raw.githubusercontent.com/DanWahlin/CopilotAdventures/main/Data/scrolls.txt'
url = 'https://raw.githubusercontent.com/microsoft/CopilotAdventures/main/Data/scrolls.txt'
fetch_and_decipher_scroll(url)

0 comments on commit 056e74e

Please sign in to comment.