#!/bin/bash
# Function to replace contractions
-replace_apostrophes() {
+function replace_apostrophes() {
# 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
+ # Input: stdin
# arg1 file path
# Output: stdout
# Version: 1.0.0 (BK-2020-03)