diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | scripts/rebuild-doc.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ Up to date API documentation can be found: * [File Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__FileUtils.html) * [Float types and arithmetic](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__Floats.html) * [Fraction Arithmetic and Time](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__Fractions.html) - * [Function Pointer](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__FunctionPtr.html) + * [Function Wrapper](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__FunctionWrap.html) * [Integer types and arithmetic](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__Integer.html) * [IO Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__IOUtils.html) * [Java VM Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__JavaVM.html) diff --git a/scripts/rebuild-doc.sh b/scripts/rebuild-doc.sh index 4f4f7e1..779c005 100644 --- a/scripts/rebuild-doc.sh +++ b/scripts/rebuild-doc.sh @@ -36,7 +36,7 @@ buildit() { if [ $? -eq 0 ] ; then echo "REBUILD SUCCESS $bname $os_name $archabi" rm -f $rootdir/documentation.tar.xz - # tar caf $rootdir/documentation.tar.xz documentation + tar caf $rootdir/documentation.tar.xz documentation cd $rootdir return 0 else |