From 2140a0743cdfd6446c569c505857fd60853cc562 Mon Sep 17 00:00:00 2001 From: Nicholas Connor Date: Mon, 23 Dec 2019 14:01:31 -0500 Subject: [PATCH] Fix README link for paged_query.rs --- examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index d2a7327..1807ae1 100644 --- a/examples/README.md +++ b/examples/README.md @@ -3,6 +3,6 @@ - [`crud_operations.rs`](./crud_operations.rs) demonstrates how to create keyspace, table and user defined type. As well basic CRUD (Create, Read, Update, Delete) operations are shown; - [`insert_collection.rs`](./insert_collection.rs) demonstrates how to insert items in lists, maps and sets; - [`multiple_thread.rs`](./multiple_thread.rs) shows how to use CDRS in multi thread applications; -- [`paged_query.rs`](./multiple_thread.rs) uncovers query paging; +- [`paged_query.rs`](./paged_query.rs) uncovers query paging; - [`prepare_batch_execute.rs`](./prepare_batch_execute.rs) provides an example of query preparation and batching; - [`server_events.rs`](./server_events.rs) illustrates a process of server events (create table, schema change etc.) listening.