From 8faa11e05a613f3092c863559d42ca765509e3d9 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Camps Date: Thu, 28 Mar 2019 19:04:00 +0100 Subject: [PATCH] fixed ... non ASCII in comments --- R/PCC.conflicts.R | 2 +- R/PCC.equipollent.R | 2 +- R/import.TEIApparatus.R | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/R/PCC.conflicts.R b/R/PCC.conflicts.R index dcd87a8..b6d40f0 100644 --- a/R/PCC.conflicts.R +++ b/R/PCC.conflicts.R @@ -6,7 +6,7 @@ PCC.conflicts <- # TODO: perhaps better, for alternateReadings, to create as many # new rows as necessary, at the start, and avoid code redundancy # as well as many small inflexions to the code due to the fact - # that we need to cross VL with themselves if alternate… + # that we need to cross VL with themselves if alternate. # it could also make the network more legible. # This could even be ported into a different function, # for separate use. diff --git a/R/PCC.equipollent.R b/R/PCC.equipollent.R index f39f544..b6dce18 100644 --- a/R/PCC.equipollent.R +++ b/R/PCC.equipollent.R @@ -61,7 +61,7 @@ PCC.equipollent <- # configurations in which some members are in conflict between # themselves, in which case we will remove them. # In order for that to work, we need to deduplicate problematic - # configurations into unproblematic ones… Harder than it looks + # configurations into unproblematic ones... Harder than it looks toBeRemovedAsWell = as.vector(NULL) #If there is more than two members for (l in seq_len(length(notInConflict))) { diff --git a/R/import.TEIApparatus.R b/R/import.TEIApparatus.R index 127554e..170946b 100644 --- a/R/import.TEIApparatus.R +++ b/R/import.TEIApparatus.R @@ -39,7 +39,7 @@ import.TEIApparatus <- myRdgWits = sub("^\\s+|\\s+$", "", myRdgWits) myRdgWits = strsplit(myRdgWits, "\\s+") myRdgVars = NULL - # 0 for omission, 1…n for readings + # 0 for omission, 1...n for readings for (j in seq_len(length(myRdgs))) { if (xml2::xml_text(myRdgs[j], "normalize-space(.)") == "") { myRdgVars = c(myRdgVars, 0)