diff --git a/README.md b/README.md index cc65cf03..e7b7cea6 100644 --- a/README.md +++ b/README.md @@ -497,7 +497,7 @@ A new format and features for the requirements xml file. See the [sample_projec - `````` ```Where``` attribute is now an element `````` under ``````. - `````` is now called ``````. - `````` must have a `````` or `````` below it. One or more `````` elements can exist below a `````` (used to be `````` under ``````). -- The `````` element now has ```name``` and ```type``` (to optionally specify return type) attributes. The ```name``` attribute refers to the fully-qualified name of the function (unless it's part of a class in a package defined under the top-level ``````, whereas before, the content of the `````` tag specified the name of the function. +- The `````` element now has ```name``` and ```type``` (to optionally specify return type) attributes. The ```name``` attribute refers to the fully-qualified name of the function (unless it's part of a class in a package defined under the top-level ``````), whereas before, the content of the `````` tag specified the name of the function. - `````` no longer exists, instead `````` tags specify an argument to be passed to a function. The `````` tag exists directly under ``````. A new attribute of the `````` tag, ```pass-current-value``` passes the running value as the specified argument to the function. The running value for the first function in a series of functions is the columns value. Afterwords, it's the returned value from the call to the previous function. CoreFunctions has been split into a few different classes, and its package has been moved. See the new classes here: [src/main/java/com/strider/datadefender/anonymizer/functions](src/main/java/com/strider/datadefender/anonymizer/functions). Some functions have been removed entirely, for example randomInt, because apache commons can be used instead with RandomUtils.nextInt.