Skip to content

Commit

Permalink
Fix incorrect URL (#2399)
Browse files Browse the repository at this point in the history
  • Loading branch information
iHiD authored Feb 9, 2024
1 parent f95f2f6 commit caf5713
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exercises/concept/regular-chatbot/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ The Chatbot is a really curious software. Even though he can search on the inter
Example of Conversation:
- **Chatbot**: Hey username, I would like to learn how to code in JavaScript, do you know any cool website where I could learn?
- **User**: I learned a lot from [exercism.com](http://website.com)
- **User**: I learned a lot from [exercism.org](http://exercism.org)
Implement the function `getURL()` which is able to return an array with just the link of each website.
```javascript
getURL('I learned a lot from exercism.com');
// => ["exercism.com"];
getURL('I learned a lot from exercism.org');
// => ["exercism.org"];
```
## Greet the user
Expand Down

0 comments on commit caf5713

Please sign in to comment.