Skip to content
This repository was archived by the owner on Aug 5, 2024. It is now read-only.

Commit c97f3e2

Browse files
committed
Fix spelling
Signed-off-by: John Bampton <[email protected]>
1 parent 90d924a commit c97f3e2

4 files changed

+8
-8
lines changed

BuildDockerImage.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ elif [[ $ARCH == "s390x" ]]; then
155155
# echo "Determined s390x Architecture"
156156
architecture="s390x"
157157
ARCH="s390x"
158-
# Ony on s390x arch is a situation where we might be running in a zOS Container extensions Docker host.
158+
# Only on s390x arch is a situation where we might be running in a zOS Container extensions Docker host.
159159
# z/OS Container Extensions platform CURL implementation does not work as expected. If zCX platform detected, add flag to adjust.
160160
zPlatform= docker system info | grep platform
161161
echo $zPlatform
@@ -166,7 +166,7 @@ elif [[ $ARCH == "s390x" ]]; then
166166
fi
167167
else
168168
echo " "
169-
echo " FATAL: Aborting. $ARCH is not a suppported platform for building the FHE Toolkit."
169+
echo " FATAL: Aborting. $ARCH is not a supported platform for building the FHE Toolkit."
170170
echo " "
171171
exit -1
172172
fi
@@ -340,15 +340,15 @@ fi
340340

341341

342342
#
343-
# Build FHE Tookit Docker image
343+
# Build FHE Toolkit Docker image
344344
#
345345
cd $BASEDIR
346346
if ! docker build -f ./Dockerfile.$build-$ARCH.Toolkit -t $FHEKit_tag --build-arg HElib_tag=$HElib_tag . $flags
347347
then
348348
echo " "
349349
echo " FATAL: Failure building Toolkit container. Please check that you have a working Docker installation"
350350
echo " in your system and the necessary user privileges to run docker commands, and that the HElib base "
351-
echo " container built correctly. This check can be done by issueing the command `docker images`"
351+
echo " container built correctly. This check can be done by issuing the command `docker images`"
352352
echo " "
353353
exit -11
354354
else

PersistData.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ elif [[ $ARCH == "s390x" ]]; then
9898
architecture="s390x"
9999
else
100100
echo " "
101-
echo " FATAL: Aborting. $ARCH is not a suppported platform for hosting or building the FHE Toolkit."
101+
echo " FATAL: Aborting. $ARCH is not a supported platform for hosting or building the FHE Toolkit."
102102
echo " "
103103
exit -1
104104
fi
@@ -192,7 +192,7 @@ then
192192
fi
193193
else
194194
echo " "
195-
echo " FATAL: Aborting. $ARCH is not a suppported platform for hosting or building the FHE Toolkit."
195+
echo " FATAL: Aborting. $ARCH is not a supported platform for hosting or building the FHE Toolkit."
196196
echo " "
197197
exit -7
198198
fi

README_TOOLKIT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The IBM Fully Homomorphic Encryption (FHE) Toolkit for Linux is packaged as [Doc
55

66
This repository contains all the scripts required to install and run the pre-packaged toolkits as a docker container. The toolkits comprise the [IBM Homomorphic Encryption Library - HElib][3], an [Integrated Development Environment (IDE)][4], and the corresponding workspace containing the ready-to-run example code in a variety of supported toolkit editions. The editions supported are based on [Centos][5], [Fedora][6], or [Ubuntu][7], or [Alpine][8]. Each toolkit edition provides access to the built-in IDE via a web browser on your host. For the more adventurous users, instructions to build and package the toolkit locally are also provided.
77

8-
If you are instead looking for the IBM Fully Homomorphic Encryption Tookit for macOS/iOS that provide a native toolkit for Apple developers, it can be found <a href="https://github.com/IBM/fhe-toolkit-macos" target="_blank">here</a>.
8+
If you are instead looking for the IBM Fully Homomorphic Encryption Toolkit for macOS/iOS that provide a native toolkit for Apple developers, it can be found <a href="https://github.com/IBM/fhe-toolkit-macos" target="_blank">here</a>.
99

1010
[![Fully Homomorphic Encryption](http://img.youtube.com/vi/5Mhbaeuv5fk/0.jpg)](http://www.youtube.com/watch?v=5Mhbaeuv5fk "Intro to FHE")
1111

RunToolkit.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ if [ ! "${CID}" ]; then
250250

251251
cmd="docker run -d --name $FHEkit_container_name $DOCKER_PERSISTENT_VOLUME_ARGS -p $PORT:8443 $FHEkit_image_name"
252252

253-
echo "INFO: Launching FHE tookit: "
253+
echo "INFO: Launching FHE toolkit: "
254254
echo ""
255255
echo ""
256256
echo " $cmd"

0 commit comments

Comments
 (0)