Skip to content

Commit 629cd59

Browse files
authored
chore: fix typos (#17911)
1 parent 7fd47b9 commit 629cd59

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
## Release
44

5-
Databend make new releases via workflow [Release](./workflows/release.yml).
5+
Databend makes new releases via workflow [Release](./workflows/release.yml).
66

77
There are three ways to trigger a new release:
88

99
- Push a new tag
1010
- On Schedule (every day at 00:00 UTC+8)
1111
- Manually triggered
1212

13-
If new tags pushed, we use this the new tag name as release name. Otherwise, we will generate a new nightly tag.
13+
If new tags pushed, we use the new tag name as release name. Otherwise, we will generate a new nightly tag.
1414

1515
For example:
1616

@@ -23,4 +23,4 @@ For every release, we will:
2323
- Build binaries and pack them on Linux and MacOS.
2424
- Upload built packages to GitHub Releases, AWS S3 bucket and Docker Registry.
2525

26-
We are adopting github native release notes generation which controlled by [release.yml](./release.yml).
26+
We are adopting github native release notes generation which is controlled by [release.yml](./release.yml).

src/bendsave/src/storage.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ pub async fn verify_query_license(cfg: &InnerConfig) -> Result<()> {
130130
///
131131
/// This will load databend meta as a stream of bytes.
132132
///
133-
/// It's internal format looks like
133+
/// Its internal format looks like
134134
///
135135
/// ```text
136136
/// {"xx": "yy"}\n

src/common/column/tests/it/bitmap/mutable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ fn extend_bitmap() {
385385

386386
// TODO! undo miri ignore once issue is fixed in miri
387387
// this test was a memory hog and lead to OOM in CI
388-
// given enough memory it was able to pass succesfully on a local
388+
// given enough memory it was able to pass successfully on a local
389389
#[test]
390390
#[cfg_attr(miri, ignore)]
391391
fn extend_constant1() {

src/query/service/src/pipelines/builders/builder_mutation_source.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl PipelineBuilder {
7979
let mut segment_locations =
8080
Vec::with_capacity(mutation_source.partitions.partitions.len());
8181
for part in &mutation_source.partitions.partitions {
82-
// Safe to downcast because we know the the partition is lazy
82+
// Safe to downcast because we know the partition is lazy
8383
let part: &FuseLazyPartInfo = FuseLazyPartInfo::from_part(part)?;
8484
segment_locations.push(SegmentLocation {
8585
segment_idx: part.segment_index,

src/query/service/src/servers/http/v1/query/execute_state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ impl Executor {
267267
let state = match &guard.state {
268268
Starting(s) => {
269269
info!(
270-
"{}: http query begin changing state from Staring to Stopped, reason {:?}",
270+
"{}: http query begin changing state from Starting to Stopped, reason {:?}",
271271
&guard.query_id, reason
272272
);
273273
if let Err(e) = &reason {

tests/sqllogictests/src/arg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ pub struct SqlLogicTestArgs {
125125
#[arg(
126126
long = "database",
127127
default_value = "default",
128-
help = "Specify the database to connnect, the default database is 'default'"
128+
help = "Specify the database to connect, the default database is 'default'"
129129
)]
130130
pub database: String,
131131

0 commit comments

Comments
 (0)