File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ class basic_connection {
102
102
, timer_{ex}
103
103
{ }
104
104
105
- // / Contructs from a context.
105
+ // / Constructs from a context.
106
106
explicit
107
107
basic_connection (
108
108
asio::io_context& ioc,
@@ -125,17 +125,17 @@ class basic_connection {
125
125
* timeout with value zero will disable health-checks. If the Redis
126
126
* server does not respond to a health-check within two times the value
127
127
* specified here, it will be considered unresponsive and the connection
128
- * will be closed and a new connection will be stablished .
128
+ * will be closed and a new connection will be established .
129
129
* 5. Starts read and write operations with the Redis
130
130
* server. More specifically it will trigger the write of all
131
131
* requests i.e. calls to `async_exec` that happened prior to this
132
132
* call.
133
133
*
134
134
* When a connection is lost for any reason, a new one is
135
- * stablished automatically. To disable reconnection call
135
+ * established automatically. To disable reconnection call
136
136
* `boost::redis::connection::cancel(operation::reconnection)`.
137
137
*
138
- * @param cfg Configuration paramters .
138
+ * @param cfg Configuration parameters .
139
139
* @param l Logger object. The interface expected is specified in the class `boost::redis::logger`.
140
140
* @param token Completion token.
141
141
*
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ enum class error
23
23
not_a_number,
24
24
25
25
// / The maximum depth of a nested response was exceeded.
26
- exceeeds_max_nested_depth ,
26
+ exceeds_max_nested_depth ,
27
27
28
28
// / Got non boolean value.
29
29
unexpected_bool_value,
You can’t perform that action at this time.
0 commit comments