diff --git a/VERSION b/VERSION
index 046c5181..cffada79 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-a12-230-gbffd02b8c7+1
\ No newline at end of file
+a12-231-g437ebf6265+1
\ No newline at end of file
diff --git a/client/README.md b/client/README.md
index 4decf9cc..ca2aad46 100644
--- a/client/README.md
+++ b/client/README.md
@@ -46,8 +46,8 @@ Below are a list of current key bindings:
| ScrLk+F | Full Screen toggle |
| ScrLk+I | Spice keyboard & mouse enable toggle |
| ScrLk+N | Toggle night vision mode (EGL renderer only!) |
-| ScrLk+Insert | Increase mouse sensitivity (in caputre mode only) |
-| ScrLk+Del | Decrease mouse sensitivity (in caputre mode only) |
+| ScrLk+Insert | Increase mouse sensitivity (in capture mode only) |
+| ScrLk+Del | Decrease mouse sensitivity (in capture mode only) |
### Setting options via command line arguments
@@ -111,7 +111,7 @@ Command line arguments will override any options loaded from the config files.
| input:grabKeyboard | -G | yes | Grab the keyboard in capture mode |
| input:escapeKey | -m | 71 = ScrollLock | Specify the escape key, see https://wiki.libsdl.org/SDLScancodeLookup for valid values |
| input:hideCursor | -M | yes | Hide the local mouse cursor |
-| input:mouseSens | | 0 | Initial mouse sensitivity when in caputre mode (-9 to 9) |
+| input:mouseSens | | 0 | Initial mouse sensitivity when in capture mode (-9 to 9) |
|---------------------------------------------------------------------------------------------------------------------------------------|
|------------------------------------------------------------------------------------------------------------------|
diff --git a/client/src/config.c b/client/src/config.c
index 98d92a6f..fc99a99a 100644
--- a/client/src/config.c
+++ b/client/src/config.c
@@ -237,7 +237,7 @@ static struct Option options[] =
{
.module = "input",
.name = "mouseSens",
- .description = "Initial mouse sensitivity when in caputre mode (-9 to 9)",
+ .description = "Initial mouse sensitivity when in capture mode (-9 to 9)",
.type = OPTION_TYPE_INT,
.value.x_int = 0,
},