Skip to content

Commit 2955409

Browse files
🤖 Auto-sync docs, metadata, and filepaths (#2843)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d8cabd2 commit 2955409

7 files changed

Lines changed: 11 additions & 5 deletions

File tree

‎exercises/practice/anagram/.meta/config.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
".meta/proof.ci.js"
2828
]
2929
},
30-
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
30+
"blurb": "Find the words that use the same letters as another word.",
3131
"source": "Inspired by the Extreme Startup game",
3232
"source_url": "https://github.com/rchatley/extreme_startup",
3333
"custom": {

‎exercises/practice/error-handling/.docs/instructions.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ Implement various kinds of error handling and resource management.
55
An important point of programming is how to handle errors and close resources even if errors occur.
66

77
This exercise requires you to handle various errors.
8+
Because error handling is rather programming language specific you'll have to refer to the tests for your track to see what's exactly required.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Introduction
2+
3+
You have taken a job at a local library helping organize their collection of old books.
4+
The student patrons are often hunting for half-remembered quotes to cite in their term papers.
5+
Rather than manually read every book from cover to cover, you decide to build a small tool to scan them, looking for these partial quotes.

‎exercises/practice/grep/.meta/config.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
".meta/proof.ci.js"
1818
]
1919
},
20-
"blurb": "Search a file for lines matching a regular expression pattern. Return the line number and contents of each matching line.",
20+
"blurb": "Search a file for lines matching a regular expression pattern.",
2121
"source": "Conversation with Nate Foster.",
2222
"source_url": "https://www.cs.cornell.edu/courses/cs3110/2014sp/hw/0/ps0.pdf",
2323
"custom": {

‎exercises/practice/isogram/.meta/config.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
".meta/proof.ci.js"
2323
]
2424
},
25-
"blurb": "Determine if a word or phrase is an isogram.",
25+
"blurb": "Determine whether a phrase is an isogram, a word with no repeated letters.",
2626
"source": "Wikipedia",
2727
"source_url": "https://en.wikipedia.org/wiki/Isogram",
2828
"custom": {

‎exercises/practice/pangram/.meta/config.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
".meta/proof.ci.js"
2525
]
2626
},
27-
"blurb": "Determine if a sentence is a pangram.",
27+
"blurb": "Determine whether a phrase uses every letter in the Latin alphabet.",
2828
"source": "Wikipedia",
2929
"source_url": "https://en.wikipedia.org/wiki/Pangram",
3030
"custom": {

‎exercises/practice/sublist/.meta/config.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
".meta/proof.ci.js"
2323
]
2424
},
25-
"blurb": "Write a function to determine if a list is a sublist of another list.",
25+
"blurb": "Determine if a list is a sublist of another list.",
2626
"custom": {
2727
"version.tests.compatibility": "jest-27",
2828
"flag.tests.task-per-describe": false,

0 commit comments

Comments
 (0)