fix spelling error
authorTony Mack <tmack@cs.princeton.edu>
Thu, 31 Dec 2009 21:01:03 +0000 (21:01 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Thu, 31 Dec 2009 21:01:03 +0000 (21:01 +0000)
13 files changed:
sfa/methods/create_slice.py
sfa/methods/delete_slice.py
sfa/methods/get_resources.py
sfa/methods/get_slices.py
sfa/methods/get_ticket.py
sfa/methods/list.py
sfa/methods/register_peer_object.py
sfa/methods/remove.py
sfa/methods/remove_peer_object.py
sfa/methods/reset_slice.py
sfa/methods/start_slice.py
sfa/methods/stop_slice.py
sfa/methods/update.py

index 6f17177..7287b51 100644 (file)
@@ -31,7 +31,7 @@ class create_slice(Method):
         Parameter(str, "Human readable name of slice to instantiate"),
         Parameter(str, "Resource specification"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(int, "1 if successful")
index 11b9124..cc43c50 100644 (file)
@@ -23,7 +23,7 @@ class delete_slice(Method):
         Parameter(str, "Credential string"),
         Parameter(str, "Human readable name of slice to delete"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(int, "1 if successful")
index 4274517..a2d945b 100644 (file)
@@ -29,7 +29,7 @@ class get_resources(Method):
         Mixed(Parameter(str, "Human readable name (hrn)"),
               Parameter(None, "hrn not specified")),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(str, "String representatin of an rspec")
index 5c0f40e..fe5c094 100644 (file)
@@ -22,7 +22,7 @@ class get_slices(Method):
     accepts = [
         Parameter(str, "Credential string"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = [Parameter(str, "Human readable slice name (hrn)")]
index 8211a1e..2ee18f2 100644 (file)
@@ -37,7 +37,7 @@ class get_ticket(Method):
         Parameter(str, "Human readable name of slice to retrive a ticket for (hrn)"),
         Parameter(str, "Resource specification (rspec)"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(str, "String represeneation of a ticket object")
index 8935429..df13965 100644 (file)
@@ -25,7 +25,7 @@ class list(Method):
         Parameter(str, "Credential string"),
         Parameter(str, "Human readable name (hrn)"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = [GeniRecord]
index df1fa94..7005716 100644 (file)
@@ -32,7 +32,7 @@ class register_peer_object(Method):
         Parameter(str, "Credential string"),
         Parameter(dict, "Record dictionary containing record fields"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(int, "1 if successful")
index 33113c2..4c3c58d 100644 (file)
@@ -30,7 +30,7 @@ class remove(Method):
         Parameter(str, "Record type"),
         Parameter(str, "Human readable name of slice to instantiate"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(int, "1 if successful")
index 9ce2727..be8f09c 100644 (file)
@@ -28,7 +28,7 @@ class remove_peer_object(Method):
         Parameter(str, "Credential string"),
         Parameter(dict, "Record dictionary"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(int, "1 if successful")
index 57216da..89eeb88 100644 (file)
@@ -23,7 +23,7 @@ class reset_slice(Method):
         Parameter(str, "Credential string"),
         Parameter(str, "Human readable name of slice to instantiate"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(int, "1 if successful")
index 446215c..01d8293 100644 (file)
@@ -23,7 +23,7 @@ class start_slice(Method):
         Parameter(str, "Credential string"),
         Parameter(str, "Human readable name of slice to instantiate"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = [Parameter(int, "1 if successful")]
index 291ac62..77ecd3f 100644 (file)
@@ -23,7 +23,7 @@ class stop_slice(Method):
         Parameter(str, "Credential string"),
         Parameter(str, "Human readable name of slice to instantiate"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(int, "1 if successful")
index 23b74c8..e97a326 100644 (file)
@@ -31,7 +31,7 @@ class update(Method):
         Parameter(str, "Credential string"),
         Parameter(dict, "Record dictionary to be updated"),
         Mixed(Parameter(str, "Human readable name of the original caller"),
-              Paramater(None, "Origin hrn not specified"))
+              Parameter(None, "Origin hrn not specified"))
         ]
 
     returns = Parameter(int, "1 if successful")