From 0736b7d00a58bd65ec75e0044799c11c5c60314e Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Fri, 26 Jan 2024 00:22:57 +0000 Subject: [PATCH] fix(unitproc/bkt-replace_apos)Update function name --- unitproc/bkt-replace_apos | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unitproc/bkt-replace_apos b/unitproc/bkt-replace_apos index 1ba50fc..8f3de42 100644 --- a/unitproc/bkt-replace_apos +++ b/unitproc/bkt-replace_apos @@ -1,14 +1,14 @@ #!/bin/bash # Function to replace contractions -function replace_apostrophes() { +function replace_apos() { # Desc: Replace ' with ʼ in contractions # Note: In contractions of UTF-8 text file, replaces U+0027 # APOSTROPHE with U+02BC MODIFIER LETTER APOSTROPHE # Input: stdin # arg1 file path # Output: stdout - # Version: 1.1.0 (BK-2020-03) + # Version: 1.1.1 (BK-2020-03) # Depends: GNU sed 4.8 # Check input -- 2.30.2