Skip to content

Commit

Permalink
fixed ... non ASCII in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Baptiste-Camps committed Mar 28, 2019
1 parent e03dcdb commit 8faa11e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/PCC.conflicts.R
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion R/PCC.equipollent.R
Original file line number Diff line number Diff line change
Expand Up @@ -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))) {
Expand Down
2 changes: 1 addition & 1 deletion R/import.TEIApparatus.R
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import.TEIApparatus <-
myRdgWits = sub("^\\s+|\\s+$", "", myRdgWits)
myRdgWits = strsplit(myRdgWits, "\\s+")
myRdgVars = NULL
# 0 for omission, 1n 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)
Expand Down

0 comments on commit 8faa11e

Please sign in to comment.