Skip to content

Commit 875d4e6

Browse files
committed
reviewer comments
1 parent f546027 commit 875d4e6

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Classes and modules can be namespaces. Namespaces can be nested, which might help to structure big code bases. Access to the namespaces is done via the scope-resolution operator.",
2+
"blurb": "Classes and modules provide namespaces. Namespaces can be nested, which might help to structure big code bases. Access to the namespaces is done via the scope-resolution operator.",
33
"authors": ["vaeng","vaiapatta1985"],
44
"contributors": []
55
}

concepts/namespaces/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Namespaces
44

55
An important method for code organization is the use of namespaces.
6-
Classes and modules can be namespaces.
6+
Classes and modules provide namespaces.
77
Two methods might have a naming collision, which can be resolved by putting them in different namespaces.
88
Namespaces can be nested, which might help to structure big code bases.
99
Access to the namespaces is done via the scope-resolution operator `::`.

concepts/namespaces/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Namespaces
44

55
An important method for code organization is the use of namespaces.
6-
Classes and modules can be namespaces.
6+
Classes and modules provide namespaces.
77
Two methods might have a naming collision, which can be resolved by putting them in different namespaces.
88
Namespaces can be nested, which might help to structure big code bases.
99
Access to the namespaces is done via the scope-resolution operator `::`.

exercises/concept/last-will/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Namespaces
44

55
An important method for code organization is the use of namespaces.
6-
Classes and modules can be namespaces.
6+
Classes and modules provide namespaces.
77
Two methods might have a naming collision, which can be resolved by putting them in different namespaces.
88
Namespaces can be nested, which might help to structure big code bases.
99
Access to the namespaces is done via the scope-resolution operator `::`.

exercises/concept/last-will/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
".meta/exemplar.rb"
1515
]
1616
},
17-
"blurb": "Classes and modules can be namespaces. Namespaces can be nested, which might help to structure big code bases. Access to the namespaces is done via the scope-resolution operator."
17+
"blurb": "Classes and modules provide namespaces. Namespaces can be nested, which might help to structure big code bases. Access to the namespaces is done via the scope-resolution operator."
1818
}

0 commit comments

Comments
 (0)