From d2c9deec1d762ca0d3b3eaad1f9198f0e8bdf5fc Mon Sep 17 00:00:00 2001 From: soyoo Date: Tue, 17 Mar 2020 02:39:36 +0800 Subject: [PATCH] Update sharedpointer.md (#77) --- doc/sharedpointer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/sharedpointer.md b/doc/sharedpointer.md index 85195f1..cd6d354 100644 --- a/doc/sharedpointer.md +++ b/doc/sharedpointer.md @@ -1,6 +1,6 @@ Nut can compile in *shared pointer* mode or *regular* mode -In *shared pointer* mode reqults of queries is QList> and in *regular* mode results are QList +In *shared pointer* mode results of queries is QList> and in *regular* mode results are QList Almost in every case shared pointer mode is better, But nut support regular mode for backward comptability. @@ -56,4 +56,4 @@ auto post = Nut::create(); In above example if *NUT_SHARED_POINTER* is defined *post* is *QSharedPointer* else is *Post\** -I recommand use *NUT_SHARED_POINTER* always! \ No newline at end of file +I recommand use *NUT_SHARED_POINTER* always!