Skip to content

Commit a43595a

Browse files
authored
Merge pull request #56 from urbytes21/dev_branch_3
Fix typo
2 parents 4e23f2d + b7cf258 commit a43595a

File tree

12 files changed

+4
-4
lines changed

12 files changed

+4
-4
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ add_subdirectory(core)
77
add_subdirectory(controller)
88
add_subdirectory(dp)
99
add_subdirectory(socket)
10-
add_subdirectory(excercise)
10+
add_subdirectory(exercise)
1111
add_subdirectory(ap)
1212

1313
# main application executable does NOT link to this library.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ void driver_test_account() {
6767

6868
class DriverAccount : public IExample {
6969
public:
70-
std::string group() const override { return "excercise"; };
70+
std::string group() const override { return "exercise"; };
7171
std::string name() const override { return "DriverAccount"; }
7272
std::string description() const override { return "Test Account"; }
7373

7474
void execute() override { driver_test_account(); }
7575
};
7676

77-
REGISTER_EXAMPLE(DriverAccount, "excercise", "DriverAccount")
77+
REGISTER_EXAMPLE(DriverAccount, "exercise", "DriverAccount")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ class DriverStudentManager : public IExample {
6767
void execute() override { driver_test_student_manager(); }
6868
};
6969

70-
REGISTER_EXAMPLE(DriverStudentManager, "excercise", "DriverStudentManager")
70+
REGISTER_EXAMPLE(DriverStudentManager, "exercise", "DriverStudentManager")
File renamed without changes.

0 commit comments

Comments
 (0)