Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
Typo corrected in cpp files
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdcf committed Oct 21, 2023
1 parent 577e0f9 commit 7c41229
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#include <iostream>
#include "src/appClassesPerUC.hpp"
#include "src/classesPerUC.hpp"
#include "src/appStudentsClasses.hpp"
#include "src/studentsClasses.hpp"
#include "src/appClasses.hpp"
#include "src/classes.hpp"

int main() {
std::cout << "Hello, World!" << std::endl;
Expand Down
2 changes: 1 addition & 1 deletion src/appClassesPerUC.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "appClassesPerUc.hpp"
#include "appClassesPerUC.hpp"
#include <sstream>
#include <string>
#include "Parser.h"
Expand Down
2 changes: 1 addition & 1 deletion src/appClassesPerUC.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "classesPerUc.hpp"
#include "classesPerUC.hpp"
#include <string>
#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion src/classesPerUC.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "classesPerUc.hpp"
#include "classesPerUC.hpp"
#include <cstdint>
#include <cstdio>
#include <cstdlib>
Expand Down

0 comments on commit 7c41229

Please sign in to comment.