Revision: 34bb4410133c
Author: Janne Härkönen <[email protected]>
Date: Wed Feb 22 00:30:00 2012
Log: userguide: typo corrections
http://code.google.com/p/robotframework/source/detail?r=34bb4410133c
Modified:
/doc/userguide/src/CreatingTestData/ResourceAndVariableFiles.txt
=======================================
--- /doc/userguide/src/CreatingTestData/ResourceAndVariableFiles.txt Tue
Feb 21 15:21:37 2012
+++ /doc/userguide/src/CreatingTestData/ResourceAndVariableFiles.txt Wed
Feb 22 00:30:00 2012
@@ -460,9 +460,9 @@
The class file must exists in both cases.
Regardless the implementation language, the framework will create an
instance
-of the class using no arguments and variables will be get from the
instance.
+of the class using no arguments and variables will be gotten from the
instance.
Similarly as with modules, variables can be defined as attributes directly
-in the instance or got from a special :code:`get_variables`
+in the instance or gotten from a special :code:`get_variables`
(or :code:`getVariables`) method.
When variables are defined directly in an instance, all attributes
containing
@@ -500,7 +500,7 @@
}
}
-The second examples utilize dynamic approach for getting variables. Both of
+The second examples utilizes dynamic approach for getting variables. Both
of
them create only one variable :var:`${DYNAMIC VARIABLE}`.
.. sourcecode:: python