about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorDaiki Ihara <sasurau4@gmail.com>2020-12-09 00:30:00 +0900
committerDaiki Ihara <sasurau4@gmail.com>2020-12-09 00:30:00 +0900
commit4f008bf8b238d60eb1778d7e28da07b5de8f1a86 (patch)
treebe2981e0c483f22013dff5a556f22176ee0669b9 /docs/dev
parente2e6b709e60f22279b755ceae74e579520c9ae3b (diff)
downloadrust-4f008bf8b238d60eb1778d7e28da07b5de8f1a86.tar.gz
rust-4f008bf8b238d60eb1778d7e28da07b5de8f1a86.zip
fix typo of README in dev
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/README.md b/docs/dev/README.md
index ca324493f5a..2795f6b5c12 100644
--- a/docs/dev/README.md
+++ b/docs/dev/README.md
@@ -170,7 +170,7 @@ In general, API is centered around UI concerns -- the result of the call is what
 The results are 100% Rust specific though.
 Shout outs to LSP developers for popularizing the idea that "UI" is a good place to draw a boundary at.
 
-## LSP is sateless
+## LSP is stateless
 
 The protocol is implemented in the mostly stateless way.
 A good mental model is HTTP, which doesn't store per-client state, and instead relies on devices like cookies to maintain an illusion of state.