]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2272] Minor ARM fixes
authorThomas Markwalder <tmark@isc.org>
Thu, 14 Apr 2022 12:48:45 +0000 (08:48 -0400)
committerRazvan Becheriu <razvan@isc.org>
Sun, 17 Apr 2022 17:24:46 +0000 (20:24 +0300)
modified:   arm/classify.rst

doc/sphinx/arm/classify.rst

index 50101d2baa03e68f02d3fc3e73fe98e2f837b37c..a2e90456bdf426af0ff67b84c757ba962277efef 100644 (file)
@@ -474,7 +474,7 @@ Notes:
    |                       |                         | a hexadecimal string, |
    |                       |                         | e.g. 0a:1b:2c:3e      |
    +-----------------------+-------------------------+-----------------------+
-   | Split                 | split('foo.bar','.',2)  | Return the second     |
+   | Split                 | split('foo.bar', '.' ,2)| Return the second     |
    |                       |                         | field, splitting on   |
    |                       |                         | dots.                 |
    +-----------------------+-------------------------+-----------------------+
@@ -601,8 +601,8 @@ an empty string for that field number.  If value is an empty string, the result
 will an empty string.  If the delimiters list is empty, the result will be the
 original value.  If the is less than one or larger than the number of fields,
 the result will be an empty string. Some examples follow:
-
 ::
+
            split ('one.two..four', '.', 1) == 'one'
            split ('one.two..four', '.', 2) == 'two'
            split ('one.two..four', '.', 3) == ''