Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Fix a typo on Documentation page #187

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion views/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down