Skip to content

Commit

Permalink
Merge pull request #66 from davidcaron/fix-description-whitespace
Browse files Browse the repository at this point in the history
small fixes for whitespace in abstract process descriptions
  • Loading branch information
huard committed Nov 29, 2018
2 parents f183a52 + 828ea72 commit 6f42c6a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions emu/processes/wps_binaryoperator.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def __init__(self):
self._handler,
identifier='binaryoperatorfornumbers',
title='Binary Operator for Numbers',
abstract='Performs operation on two numbers and returns the answer.\
This example process is taken from Climate4Impact.',
abstract='Performs operation on two numbers and returns the answer. '
'This example process is taken from Climate4Impact.',
metadata=[
Metadata('Birdhouse', 'http://bird-house.github.io/'),
Metadata('User Guide', 'http://emu.readthedocs.io/en/latest/'),
Expand Down
6 changes: 3 additions & 3 deletions emu/processes/wps_nap.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ def __init__(self):
identifier='nap',
version='1.0',
title='Afternoon Nap (supports sync calls only)',
abstract='This process will have a short nap for a given delay or 1 second if not a valid value.\
This procces only supports synchronous WPS requests ... \
so, make sure the nap does not take to long.',
abstract='This process will have a short nap for a given delay or 1 second if not a valid value. '
'This process only supports synchronous WPS requests... '
'so, make sure the nap does not take to long.',
profile='',
metadata=[
Metadata('Birdhouse', 'http://bird-house.github.io/'),
Expand Down
2 changes: 1 addition & 1 deletion emu/processes/wps_say_hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self):
self._handler,
identifier='hello',
title='Say Hello',
abstract='Just says a friendly Hello.'
abstract='Just says a friendly Hello. '
'Returns a literal string output with Hello plus the inputed name.',
keywords=['hello', 'demo'],
metadata=[
Expand Down
2 changes: 1 addition & 1 deletion emu/processes/wps_sleep.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self):
identifier='sleep',
version='1.0',
title='Sleep Process',
abstract='Testing a long running process, in the sleep.'
abstract='Testing a long running process, in the sleep. '
'This process will sleep for a given delay or 10 seconds if not a valid value.',
profile='',
metadata=[
Expand Down
2 changes: 1 addition & 1 deletion emu/processes/wps_ultimate_question.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self):
identifier='ultimate_question',
version='2.0',
title='Answer to the ultimate question',
abstract='This process gives the answer to the ultimate question of "What is the meaning of life?',
abstract='This process gives the answer to the ultimate question of "What is the meaning of life?"',
profile='',
metadata=[Metadata('Ultimate Question'), Metadata('What is the meaning of life')],
inputs=inputs,
Expand Down

0 comments on commit 6f42c6a

Please sign in to comment.