Skip to content

Commit e5b04ec

Browse files
committed
fix issues with manual
1 parent 090aab4 commit e5b04ec

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ SHELL:=/bin/bash
33

44
R_REVISION?=85786
55
HDF5_VERSION?=System
6-
DOCKER_CRAN_CHECK_ARG=''
7-
# DOCKER_CRAN_CHECK_ARG='--as-cran'
6+
# DOCKER_CRAN_CHECK_ARG=''
7+
DOCKER_CRAN_CHECK_ARG='--as-cran'
88

99
R := R --slave --vanilla -e
1010
Rscript := Rscript -e

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# hdf5r 1.3.9
2+
- Fixed issues with string formatting
3+
14
# hdf5r 1.3.8
25
- Fixed issue in configue.ac that lead to failing builds.
36

R/Common_functions.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,7 @@ commonFG <- list(
323323
"\\url{https://portal.hdfgroup.org/display/HDF5/H5D_CREATE2} for regular groups and"
324324
"\\url{https://portal.hdfgroup.org/display/HDF5/H5D_CREATE_ANON} for anonymous groups for details."
325325
"@param name The name of the new dataset. If missing, an anonymous dataset is created"
326-
"@param robj An R-object to take as a template for creating the dataset. Either \\code{robj} or both \\code{dtype} and {space}"
327-
"have to be provided"
326+
"@param robj An R-object to take as a template for creating the dataset. Either \\code{robj} or both \\code{dtype} and \\code{space} have to be provided"
328327
"@param dtype The datatype to use for the creation of the object. Can be null if \\code{robj} is given."
329328
"@param space The space to use for the object creation. Can be null if \\code{robj} is given. Otherwise an object of type \\code{H5S} which specifies the dimensions of the dataset."
330329
"@param dims Dimension of the new dataset; used if \\code{space} is \\code{NULL}. overwrite the dimension guessed from \\code{robj}"

R/R6Classes_H5P.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
#############################################################################
1818

1919

20-
##' Create an \\code{\\link{H5P}} out of an id
20+
##' Create an \code{\link{H5P}} out of an id
2121
##'
2222
##' Function that determines the property list type of an id and creates
2323
##' the appropriate class for it.
24-
##' @title Create an \\code{\\link{H5P}} out of an id
24+
##' @title Create an \code{\link{H5P}} out of an id
2525
##' @param id The id to wrap inside an object
26-
##' @return An object of class \\code{\\link{H5P}}
26+
##' @return An object of class \code{\link{H5P}}
2727
##' @author Holger Hoefling
2828
##' @keywords internal
2929
H5P_factory <- function(id) {

R/high_level_UI.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ check_arg_for_hyperslab_func <- function(x, envir) {
414414
##' @param post_read Should the reshuffle be computed for post-read (then \code{TRUE}) or pre-write (then \code{FALSE})
415415
##' @return A list with 2 parts; Evaluated arguments, regularity report and reshuffle indicators. Will be returned as a list
416416
##' with components \code{args_in}, \code{args_point}, \code{is_hyperslab}, \code{hyperslab},
417-
##' \code{needs_reshuffle}, code{reshuffle}, \code{result_dims_pre_shuffle}, \code{result_dims_post_shuffle}, \code{max_dims}
417+
##' \code{needs_reshuffle}, \code{reshuffle}, \code{result_dims_pre_shuffle}, \code{result_dims_post_shuffle}, \code{max_dims}
418418
##' @author Holger Hoefling
419419
##' @keywords internal
420420
args_regularity_evaluation <- function(args, ds_dims, envir, post_read=TRUE) {

man/H5File-class.Rd

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/H5Group-class.Rd

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/H5P_factory.Rd

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/args_regularity_evaluation.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)