Skip to content

Commit bba2098

Browse files
authored
Merge pull request #33 from LLNL/task/chen59/typos
Fix some typos.
2 parents 162f470 + f7cf5db commit bba2098

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Intro_Tutorial/lessons/04_raja_forall/04_raja_forall.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ int main()
1616

1717
std::cout << "Address of data: " << data << std::endl;
1818

19-
// TODO: write a RAJA forall loop to initialize each element of a to the value
19+
// TODO: write a RAJA forall loop to initialize each element of the array to the value
2020
// of the index
2121

2222
std::cout << "data[50] = " << data[50] << std::endl;

Intro_Tutorial/lessons/04_raja_forall/solution/04_raja_forall_solution.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ int main()
1616

1717
std::cout << "Address of data: " << data << std::endl;
1818

19-
// TODO: write a RAJA forall loop to initialize each element of a to the value
19+
// TODO: write a RAJA forall loop to initialize each element of the array to the value
2020
// of the index
2121
RAJA::forall<RAJA::seq_exec>(RAJA::TypedRangeSegment<int>(0, N), [=] (int i) {
2222
data[i] = i;

0 commit comments

Comments
 (0)