From 94193aa04c6fa554180ba87eb3a677feac4738f0 Mon Sep 17 00:00:00 2001 From: Aashish Welling Date: Fri, 24 Nov 2017 21:25:25 -0500 Subject: [PATCH] fix typo --- views/documentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/documentation.md b/views/documentation.md index de683a3b..49e6237d 100644 --- a/views/documentation.md +++ b/views/documentation.md @@ -27,7 +27,7 @@ Redis modules API --- * [Introduction to Redis modules](/topics/modules-intro). A good place to start learing about Redis 4.0 modules programming. -* [Implementing native data types](/topics/modules-native-types). Modules scan implement new data types (data structures and more) that look like built-in data types. This documentation covers the API to do so. +* [Implementing native data types](/topics/modules-native-types). Modules can implement new data types (data structures and more) that look like built-in data types. This documentation covers the API to do so. * [Blocking operations](topics/modules-blocking-ops) with modules. This is still an experimental API, but a very powerful one to write commands that can block the client (without blocking Redis) and can execute tasks in other threads. * [Redis modules API reference](topics/modules-api-ref). Directly generated from the top comments in the source code inside `src/module.c`. Contains many low level details about API usage.