Skip to content

Commit bc3a395

Browse files
committed
chore(docs): fix a number of spelling errors
1 parent f8f9b02 commit bc3a395

10 files changed

Lines changed: 95 additions & 16 deletions

File tree

.vale/styles/config/vocabularies/technical/accept.txt

Lines changed: 86 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ deduplicated
1313
sut(s?)
1414
hasher
1515
newtype
16-
boolean
16+
boolean(s?)
1717
ddsketch
1818
datadog
1919
otel
@@ -49,7 +49,7 @@ bitmask
4949
async
5050
tagset(s?)
5151
noop
52-
bitset
52+
bitset(s?)
5353
uuid(s?)
5454
fargate
5555
mysql
@@ -61,7 +61,7 @@ etcd
6161
valkey
6262
memcached
6363
redis
64-
iter(able?)
64+
iter(able)?
6565
adr(s?)
6666
github
6767
gitlab
@@ -72,8 +72,9 @@ rustdoc
7272
mutex
7373
rpc(s?)
7474
autodiscovery
75-
config
76-
remapper
75+
config(s?)
76+
remapper(s?)
77+
remapping(s?)
7778
proxying
7879
subcomponent(s?)
7980
accessor(s?)
@@ -84,9 +85,10 @@ interner
8485
dereferences
8586
prepended
8687
middleware
87-
weighter
88+
weighter(s?)
8889
deduplication
8990
deduplicates
91+
deduplicating
9092
inlining
9193
cloneable
9294
callsite
@@ -97,7 +99,7 @@ misconfiguration
9799
connectionless
98100
alphanumeric(s?)
99101
monomorphization
100-
datagram
102+
datagram(s?)
101103
loopback
102104
superset
103105
subset
@@ -130,5 +132,82 @@ vendored
130132
querier
131133
chumsky
132134
tokenization
135+
tokenizer
133136
ottl
134137
performant
138+
allowlist
139+
denylist
140+
arg(s?)
141+
autoscale
142+
autoscaling
143+
bool(s?)
144+
bottlenecked
145+
callouts
146+
canonicalization
147+
codepath
148+
configurability
149+
cooldown
150+
crypto
151+
deserializable
152+
deserializer
153+
downcasted
154+
upcasted
155+
env
156+
expvar
157+
falsy
158+
truthy
159+
formatters
160+
globals
161+
implementor(s?)
162+
jittered
163+
losslessly
164+
lossy
165+
lookups
166+
lowercased
167+
mergeable
168+
namespaced
169+
Neumaier
170+
nonexact
171+
ns
172+
nopriority
173+
parallelization
174+
passthrough
175+
Podman
176+
presampler
177+
proto
178+
queryability
179+
quantize(s?)
180+
Reachability
181+
retriable
182+
routable
183+
snapshotted
184+
snapshotting
185+
stringified
186+
subexpression(s?)
187+
subtasks
188+
supervisable
189+
swappable
190+
syslog
191+
teardown
192+
tracestate
193+
UID(s?)
194+
Unary
195+
Unescape
196+
unregister(s?)
197+
unsampled
198+
unset(s?)
199+
Unschedule
200+
untyped
201+
usize
202+
userinfo
203+
vCPUs
204+
bootstrapper
205+
fmt
206+
vec
207+
axum
208+
bollard
209+
dataspace
210+
filterlist
211+
filterprocessor
212+
panoramic
213+
transformprocessor

bin/agent-data-plane/src/internal/env/autodiscovery.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use tracing::{debug, warn};
1717
///
1818
/// This provider is based primarily on the remote autodiscovery API exposed by the Datadog Agent, which handles the
1919
/// bulk of the work by detecting changes to underlying environment (such as containers starting and stopping), and
20-
/// determing if they have services associated with them that require checks to be run against them. The remote
20+
/// determining if they have services associated with them that require checks to be run against them. The remote
2121
/// autodiscovery API operates in a streaming fashion, which the provider uses to then broadcast updates to subscribers.
2222
#[derive(Clone)]
2323
pub struct RemoteAgentAutodiscoveryProvider {

lib/ottl/src/parser/arena.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! Provides cache-friendly AST storage and optimizations like:
44
//! - Path resolution at parse time
55
//! - Constant folding for literals
6-
//! - linear memory with less inderections
6+
//! - linear memory with less indirections
77
88
use std::marker::PhantomData;
99

lib/saluki-common/src/cache/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pub struct CacheBuilder<K, V, W = ItemCountWeighter, H = FastBuildHasher> {
5454
impl<K, V> CacheBuilder<K, V> {
5555
/// Creates a new `CacheBuilder` with the given cache identifier.
5656
///
57-
/// The cache identifier _should_ be unique, but it'sn't required to be. Metrics for the cache will be emitted
57+
/// The cache identifier _should_ be unique, but it isn't required to be. Metrics for the cache will be emitted
5858
/// using the given identifier, so in cases where the identifier isn't unique, those metrics will be aggregated
5959
/// together and it won't be possible to distinguish between the different caches.
6060
///

lib/saluki-components/src/common/otlp/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ const fn default_internal_port() -> u16 {
241241
pub struct ProbabilisticSampler {
242242
/// Percentage of traces to ingest (0, 100].
243243
///
244-
/// Invalid values (<= 0 || > 100) are disconsidered and the default is used.
244+
/// Invalid values (<= 0 || > 100) are disregarded and the default is used.
245245
///
246246
/// Corresponds to `otlp_config.traces.probabilistic_sampler.sampling_percentage` in the Agent.
247247
///

lib/saluki-context/src/resolver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub struct ContextResolverBuilder {
7272
impl ContextResolverBuilder {
7373
/// Creates a new `ContextResolverBuilder` with the given resolver name.
7474
///
75-
/// The resolver name _should_ be unique, but it'sn't required to be. Metrics for the resolver will be
75+
/// The resolver name _should_ be unique, but it isn't required to be. Metrics for the resolver will be
7676
/// emitted using the given name, so in cases where the name isn't unique, those metrics will be aggregated
7777
/// together and it won't be possible to distinguish between the different resolvers.
7878
///

lib/saluki-core/src/data_model/event/log/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ impl Log {
109109
self
110110
}
111111

112-
/// Sets the addtional properties map.
112+
/// Sets the additional properties map.
113113
pub fn with_additional_properties(
114114
mut self, additional_properties: impl Into<Option<HashMap<MetaString, JsonValue>>>,
115115
) -> Self {

lib/saluki-core/src/data_model/event/metric/value/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ impl MetricValues {
463463
}
464464
}
465465

466-
/// Returns `true` if this metric is a serie.
466+
/// Returns `true` if this metric is a series.
467467
pub fn is_serie(&self) -> bool {
468468
matches!(
469469
self,

lib/saluki-core/src/runtime/state/dataspace.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ struct DataspaceRegistryInner {
208208
///
209209
/// # Thread Safety
210210
///
211-
/// `DataspaceRegistry` is `Clone` and can be safely shared across threadVs and tasks. All operations are thread-safe.
211+
/// `DataspaceRegistry` is `Clone` and can be safely shared across threads and tasks. All operations are thread-safe.
212212
#[derive(Clone)]
213213
pub struct DataspaceRegistry {
214214
inner: Arc<DataspaceRegistryInner>,

lib/saluki-core/src/topology/shutdown.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use tokio::sync::{
1717

1818
/// A component-specific shutdown coordinator.
1919
///
20-
/// This coordinator is designed for use by the topology to signal components to shutdown. Once a handle is registerd,
20+
/// This coordinator is designed for use by the topology to signal components to shutdown. Once a handle is registered,
2121
/// it can not be unregistered. If you required the ability to unregister handles, consider using [`DynamicShutdownCoordinator`].
2222
#[derive(Default)]
2323
pub struct ComponentShutdownCoordinator {

0 commit comments

Comments
 (0)