From 2e26cd58d11063dc2ef89dffe51c783ca53d5a7f Mon Sep 17 00:00:00 2001 From: Bryce Mecum Date: Wed, 12 Apr 2017 14:37:28 -0800 Subject: [PATCH] Fix name issue --- NAMESPACE | 2 +- R/eml.R | 2 +- ...id_to_other_eml_entity.Rd => pid_to_eml_other_entity.Rd} | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) rename man/{pid_to_other_eml_entity.Rd => pid_to_eml_other_entity.Rd} (87%) diff --git a/NAMESPACE b/NAMESPACE index ac55f25..33a9f95 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -73,8 +73,8 @@ export(new_uuid) export(object_exists) export(parse_resource_map) export(path_join) +export(pid_to_eml_other_entity) export(pid_to_eml_physical) -export(pid_to_other_eml_entity) export(publish_object) export(publish_update) export(remove_public_read) diff --git a/R/eml.R b/R/eml.R index 0c69f21..8dd779b 100644 --- a/R/eml.R +++ b/R/eml.R @@ -20,7 +20,7 @@ #' pkg <- get_package(mn, pid) #' pid_to_other_entity(mn, pkg$data) #' } -pid_to_other_eml_entity <- function(mn, pids) { +pid_to_eml_other_entity <- function(mn, pids) { stopifnot(class(mn) == "MNode") stopifnot(is.character(pids), all(nchar(pids)) > 0) diff --git a/man/pid_to_other_eml_entity.Rd b/man/pid_to_eml_other_entity.Rd similarity index 87% rename from man/pid_to_other_eml_entity.Rd rename to man/pid_to_eml_other_entity.Rd index 28bde05..30a7536 100644 --- a/man/pid_to_other_eml_entity.Rd +++ b/man/pid_to_eml_other_entity.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand % Please edit documentation in R/eml.R -\name{pid_to_other_eml_entity} -\alias{pid_to_other_eml_entity} +\name{pid_to_eml_other_entity} +\alias{pid_to_eml_other_entity} \title{eml.R} \usage{ -pid_to_other_eml_entity(mn, pids) +pid_to_eml_other_entity(mn, pids) } \arguments{ \item{mn}{(MNode) Member Node where the PID is associated with an object.}