Skip to content

Commit e2d462b

Browse files
committed
Merge branch 'main' of github.com:cmu-db/15445-bootcamp
2 parents 1d1648f + 36bfa01 commit e2d462b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/namespaces.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
// This is the syntax to declare a namespace.
2424
namespace ABC {
25-
// We define a function spam in the ABC namespace. This is used in line 44.
25+
// We define a function spam in the ABC namespace. This is used in line 57.
2626
void spam(int a) {
2727
std::cout << "Hello from ABC::spam: " << a << std::endl;
2828
}
@@ -158,4 +158,4 @@ int main() {
158158
eggs(999);
159159

160160
return 0;
161-
}
161+
}

0 commit comments

Comments
 (0)