CB100

Notas, resueltos y tps de la materia Algoritmos y Estructuras de Datos
Index Commits Files Refs README
commit e16aeb8be35bda67a989de59673641f08573a8fd
parent 19bf67e985f1f5abc13aa2db1d2d9358cc066c45
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Sun, 16 Jun 2024 13:23:57 -0300

change input file path name style to camelCase

Diffstat:
Mmain.cpp | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/main.cpp b/main.cpp
@@ -14,11 +14,11 @@ int main (void) {
     std::string token;
     List<std::string> tokens;
 
-    const char *file_path = "paradas-de-colectivo.csv";
+    const char *inputFilePath = "paradas-de-colectivo.csv";
 
-    inputFile.open(file_path);
+    inputFile.open(inputFilePath);
     if(!inputFile.is_open()) {
-        std::cout << "No se pudo abrir el archivo `" << file_path << "`\n";
+        std::cout << "No se pudo abrir el archivo `" << inputFilePath << "`\n";
         return 1;
     }