From 19f153a9fe67396fd35afe59e02bc6df6821b94f Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 25 Jul 2021 10:19:20 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - README.md - pymatbridge/messenger/src/messenger.c Fixes: - Should read `initialized` rather than `intialized`. - Should read `appropriate` rather than `apporpriate`. --- README.md | 2 +- pymatbridge/messenger/src/messenger.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0619ff8..86863d6 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,7 @@ On Linux, add the following line to your .bash_profile (or similar file for your On Windows, add the install location of libzmq.dll to the PATH environment variable. On Windows 7+, typing "environment variables" into the start menu will bring up the -apporpriate Control Panel links. +appropriate Control Panel links. #### Pointing the binary at the right place diff --git a/pymatbridge/messenger/src/messenger.c b/pymatbridge/messenger/src/messenger.c index 102999e..4a12e57 100644 --- a/pymatbridge/messenger/src/messenger.c +++ b/pymatbridge/messenger/src/messenger.c @@ -27,7 +27,7 @@ int initialize(char *socket_addr) { } } -/* Check if the ZMQ server is intialized and print an error if not */ +/* Check if the ZMQ server is initialized and print an error if not */ int checkInitialized(void) { if (!initialized) { mexErrMsgTxt("Error: ZMQ session not initialized");