From f343f3a7ecc11f11bfc58c949318916d3b2c06dc Mon Sep 17 00:00:00 2001
From: Marc Bonnici <marc.bonnici@arm.com>
Date: Tue, 10 Apr 2018 11:41:22 +0100
Subject: [PATCH] wa/commands: Fix typo in create templates

---
 wa/commands/templates/apk_workload       | 2 +-
 wa/commands/templates/apkrevent_workload | 2 +-
 wa/commands/templates/apkuiauto_workload | 2 +-
 wa/commands/templates/basic_workload     | 2 +-
 wa/commands/templates/revent_workload    | 2 +-
 wa/commands/templates/uiauto_workload    | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/wa/commands/templates/apk_workload b/wa/commands/templates/apk_workload
index bd596ba3..f3530283 100644
--- a/wa/commands/templates/apk_workload
+++ b/wa/commands/templates/apk_workload
@@ -17,7 +17,7 @@ class ${class_name}(ApkWorkload):
 
     def __init__(self, target, **kwargs):
         super(${class_name}, self).__init__(target, **kwargs)
-        # Define any additional attiributes required for the workload
+        # Define any additional attributes required for the workload
 
     def init_resources(self, context):
         super(${class_name}, self).init_resources(context)
diff --git a/wa/commands/templates/apkrevent_workload b/wa/commands/templates/apkrevent_workload
index 8d3ce20f..b0314c9c 100644
--- a/wa/commands/templates/apkrevent_workload
+++ b/wa/commands/templates/apkrevent_workload
@@ -17,7 +17,7 @@ class ${class_name}(ApkReventWorkload):
 
     def __init__(self, target, **kwargs):
         super(${class_name}, self).__init__(target, **kwargs)
-        # Define any additional attiributes required for the workload
+        # Define any additional attributes required for the workload
 
     def init_resources(self, context):
         super(${class_name}, self).init_resources(context)
diff --git a/wa/commands/templates/apkuiauto_workload b/wa/commands/templates/apkuiauto_workload
index 56563614..b70f92a4 100644
--- a/wa/commands/templates/apkuiauto_workload
+++ b/wa/commands/templates/apkuiauto_workload
@@ -17,7 +17,7 @@ class ${class_name}(ApkUiautoWorkload):
 
     def __init__(self, target, **kwargs):
         super(${class_name}, self).__init__(target, **kwargs)
-        # Define any additional attiributes required for the workload
+        # Define any additional attributes required for the workload
 
     def init_resources(self, context):
         super(${class_name}, self).init_resources(context)
diff --git a/wa/commands/templates/basic_workload b/wa/commands/templates/basic_workload
index f7dabd9f..e6eca0e9 100644
--- a/wa/commands/templates/basic_workload
+++ b/wa/commands/templates/basic_workload
@@ -15,7 +15,7 @@ class ${class_name}(Workload):
 
     def __init__(self, target, **kwargs):
         super(${class_name}, self).__init__(target, **kwargs)
-        # Define any additional attiributes required for the workload
+        # Define any additional attributes required for the workload
 
     def init_resources(self, context):
         super(${class_name}, self).init_resources(context)
diff --git a/wa/commands/templates/revent_workload b/wa/commands/templates/revent_workload
index 2c805bb8..ad0a5cce 100644
--- a/wa/commands/templates/revent_workload
+++ b/wa/commands/templates/revent_workload
@@ -15,7 +15,7 @@ class ${class_name}(ReventWorkload):
 
     def __init__(self, target, **kwargs):
         super(${class_name}, self).__init__(target, **kwargs)
-        # Define any additional attiributes required for the workload
+        # Define any additional attributes required for the workload
 
     def init_resources(self, context):
         super(${class_name}, self).init_resources(context)
diff --git a/wa/commands/templates/uiauto_workload b/wa/commands/templates/uiauto_workload
index 2376b998..e330ead7 100644
--- a/wa/commands/templates/uiauto_workload
+++ b/wa/commands/templates/uiauto_workload
@@ -17,7 +17,7 @@ class ${class_name}(UiautoWorkload):
 
     def __init__(self, target, **kwargs):
         super(${class_name}, self).__init__(target, **kwargs)
-        # Define any additional attiributes required for the workload
+        # Define any additional attributes required for the workload
 
     def init_resources(self, context):
         super(${class_name}, self).init_resources(context)