From 5e4964f40c78dd95e0e7af4f8c6fb57b64fd1c4e Mon Sep 17 00:00:00 2001
From: Chris Martinez <sydefekt@hotmail.com>
Date: Wed, 25 Oct 2023 19:45:53 -0700
Subject: [PATCH] Remove 's' from CTRL+S

---
 guide/src/guide/troubleshooting.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guide/src/guide/troubleshooting.md b/guide/src/guide/troubleshooting.md
index ea42826..e7b5fa2 100644
--- a/guide/src/guide/troubleshooting.md
+++ b/guide/src/guide/troubleshooting.md
@@ -27,7 +27,7 @@ struct FooImpl {
 
 impl Foo for FooImpl {
     fn do_work(&self) {
-        self.bar.do_work()s
+        self.bar.do_work()
     }
 }