diff --git a/waftools/clang_compilation_database.py b/waftools/clang_compilation_database.py
index 93be6313..7c3d9c30 100644
--- a/waftools/clang_compilation_database.py
+++ b/waftools/clang_compilation_database.py
@@ -46,7 +46,7 @@ def write_compilation_database(ctx):
         if not os.path.exists(file_path):
             with open(file_path, 'w') as f:
                 f.write('[]')
-        Logs.info("Store compile comands in %s" % file_path)
+        Logs.info("Store compile commands in %s" % file_path)
         clang_db = dict((x["file"], x) for x in json.load(database_file))
         for task in getattr(ctx, 'clang_compilation_database_tasks', []):
                 try: