From 15d853f85cc0e18c197f2dc11dc7c24501f1f02c Mon Sep 17 00:00:00 2001 From: jgjuara Date: Wed, 14 Jun 2023 12:16:54 -0300 Subject: [PATCH 1/2] elimino espacio entre signo y numero en lbl_money --- R/lbl_money.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/lbl_money.R b/R/lbl_money.R index 2fa1c44..3aa98d7 100644 --- a/R/lbl_money.R +++ b/R/lbl_money.R @@ -14,7 +14,7 @@ lbl_money <- function(x, decimales = 0, dolar = F, escala = 1, sufijo = NULL) { accuracy = 1 / (10 ^ decimales), big.mark = ".", decimal.mark = ",", - prefix = ifelse(dolar, "US$ ", "$ "), + prefix = ifelse(dolar, "US$", "$"), scale = 1 / escala, suffix = ifelse(is.null(sufijo), "", paste0(" ", sufijo)) )(x) From a3df6eb8cc2971634a827241a90b8335b24c7498 Mon Sep 17 00:00:00 2001 From: jgjuara Date: Wed, 14 Jun 2023 12:19:26 -0300 Subject: [PATCH 2/2] desciption y news --- DESCRIPTION | 2 +- NEWS.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 3d961e7..cd9c8de 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: comunicacion Title: DNMyE - ComunicaciĆ³n -Version: 0.0.0.9009 +Version: 0.0.0.9010 Authors@R: c( person("Pablo", "Tiscornia", , "ptiscornia@turismo.gob.ar", role = c("aut")), person("Juan", "Juara", , "jgjuara@turismo.gob.ar", role = c("aut")), diff --git a/NEWS.md b/NEWS.md index 2953d3b..e313204 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# comunicacion 0.0.0.9010 + +* Elimino espacio entre signos `$/U$S`y numero en `lbl_money` + # comunicacion 0.0.0.9009 * Arreglado bug que mezclaba template de informe y de presentacion.