Skip to content

Commit

Permalink
Replace \\. with \\# to fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ikelax committed Jan 7, 2025
1 parent 0de61ac commit 1e17be2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mealplans.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function escapeReservedCharacters(string) {
.replaceAll("(", "\\(")
.replaceAll(")", "\\)")
.replaceAll(".", "\\.")
.replaceAll("#", "\\.");
.replaceAll("#", "\\#");
}

/**
Expand Down

0 comments on commit 1e17be2

Please sign in to comment.