@@ -53,16 +53,16 @@ custom `__str__` methods), there is no symetric operation that converts string c
5353`str() ` back to typed value. Module `strconv ` provides support for such symetric conversion
5454from/to string for any data type.
5555
56- Symetric string conversion is used by `~ firebird.base.config ` module, notably by
57- `~ firebird.base.config.ListOption ` and `~ firebird.base.config.DataclassOption `. You can
56+ Symetric string conversion is used by `firebird.base.config ` module, notably by
57+ `firebird.base.config.ListOption ` and `firebird.base.config.DataclassOption `. You can
5858extend the range of data types supported by these options by registering convertors for
5959required data types.
6060
6161Configuration definitions
6262=========================
6363
6464Complex applications (and some library modules like `logging `) could be often parametrized
65- via configuration. Module `~ firebird.base.config ` provides a framework for unified structured
65+ via configuration. Module `firebird.base.config ` provides a framework for unified structured
6666configuration that supports:
6767
6868* configuration options of various data type, including lists and other complex types
@@ -98,7 +98,7 @@ module.
9898The context-based logging:
9999
100100* Adds context information (defined as combination of topic, agent and context string values)
101- into `~ logging.LogRecord `, that could be used in logging message.
101+ into `logging.LogRecord `, that could be used in logging message.
102102* Adds support for f-string message format.
103103* Allows assignment of loggers to specific contexts. The `LoggingManager ` class maintains
104104 a set of bindings between `Logger ` objects and combination of `agent `, `context ` and `topic `
@@ -123,7 +123,7 @@ callable, execution time, return value, information about raised exception etc.
123123The trace logging is managed by `TraceManager `, that allows dynamic configuration of traced
124124callables at runtime.
125125
126- Trace supports configuration based on `~ firebird.base.config `.
126+ Trace supports configuration based on `firebird.base.config `.
127127
128128Registry for Google Protocol Buffer messages and enums
129129======================================================
@@ -136,7 +136,7 @@ protobuf messages or enum types, or to create message instances or enum values.
136136Callback systems
137137================
138138
139- Module `~ firebird.base.signal ` provides two callback mechanisms: one based on signals and
139+ Module `firebird.base.signal ` provides two callback mechanisms: one based on signals and
140140slots similar to Qt signal/slot, and second based on optional method delegation similar to
141141events in Delphi.
142142
0 commit comments