Skip to content

Commit

Permalink
Refs #9587 - Slight amendments.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterParker committed Jun 5, 2014
1 parent 6638290 commit 9562e61
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Expand Up @@ -5,7 +5,7 @@
class CreateEmptyTableWorkspace(PythonAlgorithm):

def summary(self):
return "Creates an empty table workspace that can be populated by python code"
return "Creates an empty TableWorkspace which can be populated with various types of information."

def PyInit(self):
# Declare properties
Expand Down
6 changes: 3 additions & 3 deletions Code/Mantid/docs/source/algorithms/SaveCanSAS1D-v1.rst
Expand Up @@ -9,12 +9,12 @@
.. _Version 1.0: http://www.cansas.org/formats/1.0/cansas1d.xsd
.. _version 1.1: http://www.cansas.org/formats/1.1/cansas1d.xsd
.. _canSAS Wiki: http://www.cansas.org/formats/canSAS1d/1.1/doc/
.. _MatrixWorkspace: http://www.mantidproject.org/MatrixWorkspace

Description
-----------

Saves the given `MatrixWorkspace <MatrixWorkspace>`__ to a file in the canSAS
1-D format.
Saves the given `MatrixWorkspace`_ to a file in the canSAS 1-D format.

The canSAS 1-D Format
#####################
Expand All @@ -37,7 +37,7 @@ You can export data to files using `version 1.1`_ of the specification by using
Usage
-----

**Example - simple rebin of a histogram workspace:**
**Example - Save/Load "Roundtrip"**

.. testcode:: ExSimpleSavingRoundtrip

Expand Down
8 changes: 4 additions & 4 deletions Code/Mantid/docs/source/algorithms/SaveCanSAS1D-v2.rst
Expand Up @@ -9,12 +9,12 @@
.. _version 1.0: http://www.cansas.org/formats/1.0/cansas1d.xsd
.. _Version 1.1: http://www.cansas.org/formats/1.1/cansas1d.xsd
.. _canSAS Wiki: http://www.cansas.org/formats/canSAS1d/1.1/doc/
.. _MatrixWorkspace: http://www.mantidproject.org/MatrixWorkspace

Description
-----------

Saves the given `MatrixWorkspace <MatrixWorkspace>`__ to a file in the canSAS
1-D format.
Saves the given `MatrixWorkspace`_ to a file in the canSAS 1-D format.

The canSAS 1-D Format
#####################
Expand All @@ -37,7 +37,7 @@ You can export data to files using `version 1.0`_ of the specification by using
Usage
-----

**Example - simple rebin of a histogram workspace:**
**Example - Save/Load "Roundtrip"**

.. testcode:: ExSimpleSavingRoundtrip

Expand All @@ -46,7 +46,7 @@ Usage
# Create dummy workspace.
dataX = [0,1,2,3]
dataY = [9,5,7]
out_ws = CreateWorkspace(dataX, dataY,UnitX="MomentumTransfer")
out_ws = CreateWorkspace(dataX, dataY, UnitX="MomentumTransfer")

file_path = os.path.join(config["defaultsave.directory"], "canSASData.xml")

Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/docs/source/algorithms/SaveNXSPE-v1.rst
Expand Up @@ -28,7 +28,7 @@ detectors parameters from the instrument description.
Usage
-----

**Example - simple rebin of a histogram workspace:**
**Example - Save/Load "Roundtrip"**

.. testcode:: ExSimpleSavingRoundtrip

Expand Down

0 comments on commit 9562e61

Please sign in to comment.