This is an automated email from the ASF dual-hosted git repository.

fschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 160ec24  Correct more typos (it's vs. its)
160ec24 is described below

commit 160ec244b7da7e8dd35fa1ca1d2591218375ec0a
Author: Felix Schumacher <[email protected]>
AuthorDate: Mon Jan 24 19:08:52 2022 +0100

    Correct more typos (it's vs. its)
---
 xdocs/usermanual/component_reference.xml | 4 ++--
 xdocs/usermanual/jmeter_tutorial.xml     | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/xdocs/usermanual/component_reference.xml 
b/xdocs/usermanual/component_reference.xml
index 5aff4f0..00b8ed2 100644
--- a/xdocs/usermanual/component_reference.xml
+++ b/xdocs/usermanual/component_reference.xml
@@ -1211,7 +1211,7 @@ props.put("PROP1","1234");</source>
     </property>
     <property name="Script File" required="No">Name of a file to be used as a 
JSR223 script, if a relative file path is used, then it will be relative to 
directory referenced by "<code>user.dir</code>" System property</property>
     <property name="Parameters" required="No">List of parameters to be passed 
to the script file or the script.</property>
-    <property name="Cache compiled script if available" required="No">If 
checked (advised) and the language used supports <code><a 
href="https://docs.oracle.com/javase/8/docs/api/javax/script/Compilable.html";>Compilable</a></code>
 interface (Groovy is one of these, java, beanshell and javascript are not), 
JMeter will compile the Script and cache it using it's MD5 hash as unique cache 
key</property>
+    <property name="Cache compiled script if available" required="No">If 
checked (advised) and the language used supports <code><a 
href="https://docs.oracle.com/javase/8/docs/api/javax/script/Compilable.html";>Compilable</a></code>
 interface (Groovy is one of these, java, beanshell and javascript are not), 
JMeter will compile the Script and cache it using its MD5 hash as unique cache 
key</property>
     <property name="Script" required="Yes (unless script file is 
provided)">Script to be passed to JSR223 language</property>
 </properties>
 <p>
@@ -6044,7 +6044,7 @@ extracting the node as text or attribute value and store 
the result into the giv
     use namespaces than with the old XPathExtractor version.</property>
    </properties>
    <p>To allow for use in a <complink name="ForEach Controller"/>, it works 
exactly the same as the above XPath Extractor</p>
-   <p>XPath2 Extractor provides some interestings tools such as an improved 
syntax and much more functions than in it's first version.</p>
+   <p>XPath2 Extractor provides some interestings tools such as an improved 
syntax and much more functions than in its first version.</p>
    <p>Here are some exemples: </p>
    <dl>
    <dt><code>abs(/book/page[2])</code></dt>
diff --git a/xdocs/usermanual/jmeter_tutorial.xml 
b/xdocs/usermanual/jmeter_tutorial.xml
index fe5e7f0..f32a8d0 100644
--- a/xdocs/usermanual/jmeter_tutorial.xml
+++ b/xdocs/usermanual/jmeter_tutorial.xml
@@ -768,7 +768,7 @@ JMeter's <code>src/components</code> directory).
         attention to your properties. These properties will become the basis 
of a GUI form by
         which users will configure the <code>CSVDataSet</code> element.
       </li>
-      <li>Your element will be cloned by JMeter when the test starts. Each 
thread will get it's
+      <li>Your element will be cloned by JMeter when the test starts. Each 
thread will get its
         own instance. However, you will have a chance to control how the 
cloning is done, if
         you need it.
       </li>
@@ -785,7 +785,7 @@ JMeter's <code>src/components</code> directory).
       </li>
       <li>I then implemented the <code>IterationStart</code> method of the 
<code>LoopIterationListener</code> interface.
         The point of this "event" is that your component is notified of when 
the test has entered
-        it's parent controller. For our purposes, every time the 
<code>CSVDataSet</code>'s parent controller
+        its parent controller. For our purposes, every time the 
<code>CSVDataSet</code>'s parent controller
         is entered, we will read a new line of the data file and set the 
variables. Thus, for a
         regular controller, each loop through the test will result in a new 
set of values being
         read. For a loop controller, each iteration will do likewise. Every 
test thread will get

Reply via email to