Skip to content

Commit 29286f6

Browse files
authored
Add blurbs for all concepts (exercism#2015)
* Add blurbs for all concepts Also fix the typo in one of the concept exercise blurbs * Fix typo in constructors blurb
1 parent c7b2205 commit 29286f6

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

concepts/basics/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for basics concept",
2+
"blurb": "Learn about Java basics like variable assignment and methods.",
33
"authors": [
44
"mirkoperillo"
55
],

concepts/booleans/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for booleans concept",
2+
"blurb": "Booleans (true and false) are used for conditional logic.",
33
"authors": [
44
"mikedamay"
55
],

concepts/chars/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for chars concept",
2+
"blurb": "Strings are made up of chars (for example, a letter).",
33
"authors": [
44
"ystromm"
55
],

concepts/classes/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for classes concept",
2+
"blurb": "Classes are the foundation of object-oriented programming in Java.",
33
"authors": [
44
"mikedamay"
55
],

concepts/conditionals-if/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for conditionals-if concept",
2+
"blurb": "Java supports various logical operations and conditionals like the if statement.",
33
"authors": [
44
"TalesDias"
55
],

concepts/constructors/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for constructors concept",
2+
"blurb": "Constructors are used to create instances of a class.",
33
"authors": [
44
"ystromm"
55
],

concepts/inheritance/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for inheritance concept",
2+
"blurb": "Java supports single-parent inheritance for classes to extend and inherit behaviors.",
33
"authors": [
44
"himanshugoyal1065"
55
],

concepts/interfaces/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for interfaces concept",
2+
"blurb": "Java interfaces allow decoupling between a class and its implementation.",
33
"authors": [
44
"mikedamay"
55
],

concepts/numbers/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for numbers concept",
2+
"blurb": "Java includes various numeric types including integer and floating-point numbers.",
33
"authors": [
44
"TalesDias"
55
],

concepts/strings/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for strings concept",
2+
"blurb": "Strings are an immutable sequence of Unicode characters.",
33
"authors": [
44
"mirkoperillo"
55
],

concepts/ternary-operators/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "TODO: add blurb for ternary-operators concept",
2+
"blurb": "The ternary operator is a compact if-else statement.",
33
"authors": [
44
"TalesDias"
55
],

exercises/concept/cars-assemble/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Learn about numbers by analyzing the production of an asseMbly line.",
2+
"blurb": "Learn about numbers by analyzing the production of an assembly line.",
33
"authors": [
44
"TalesDias"
55
],

0 commit comments

Comments
 (0)