From 740926e7474a603f77c770488265d331032ad3b7 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Tue, 20 Sep 2022 22:39:35 +0800 Subject: [PATCH] Fix typos Found via `codespell -L crate,nam,hart,succeded`. --- .github/scripts/is-latest-release.sh | 2 +- .github/workflows/milestone-workflow.yml | 12 ++++++------ .github/workflows/publish-docker-images.yml | 2 +- CONTRIBUTING.md | 2 +- meilisearch-http/src/analytics/segment_analytics.rs | 10 +++++----- meilisearch-http/src/option.rs | 2 +- meilisearch-lib/src/dump/compat/v2.rs | 2 +- meilisearch-lib/src/dump/loaders/v4.rs | 4 ++-- meilisearch-lib/src/index/search.rs | 2 +- meilisearch-lib/src/index_resolver/index_store.rs | 2 +- meilisearch-lib/src/tasks/task_store/store.rs | 2 +- 11 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/scripts/is-latest-release.sh b/.github/scripts/is-latest-release.sh index 81534a2f7..54f0a9d3a 100644 --- a/.github/scripts/is-latest-release.sh +++ b/.github/scripts/is-latest-release.sh @@ -85,7 +85,7 @@ get_latest() { latest="" current_tag="" for release_info in $releases; do - if [ $i -eq 0 ]; then # Cheking tag_name + if [ $i -eq 0 ]; then # Checking tag_name if echo "$release_info" | grep -q "$GREP_SEMVER_REGEXP"; then # If it's not an alpha or beta release current_tag=$release_info else diff --git a/.github/workflows/milestone-workflow.yml b/.github/workflows/milestone-workflow.yml index 4d0425f14..4cb87684d 100644 --- a/.github/workflows/milestone-workflow.yml +++ b/.github/workflows/milestone-workflow.yml @@ -62,12 +62,12 @@ jobs: - uses: actions/checkout@v3 - name: Download the issue template run: curl -s https://raw.githubusercontent.com/meilisearch/core-team/main/issue-templates/roadmap-issue.md > $ISSUE_TEMPLATE - - name: Replace all empty occurences in the templates + - name: Replace all empty occurrences in the templates run: | - # Replace all <> occurences + # Replace all <> occurrences sed -i "s/<>/$MILESTONE_VERSION/g" $ISSUE_TEMPLATE - # Replace all <> occurences + # Replace all <> occurrences milestone_id=$(echo $MILESTONE_URL | cut -d '/' -f 7) sed -i "s/<>/$milestone_id/g" $ISSUE_TEMPLATE @@ -95,12 +95,12 @@ jobs: - uses: actions/checkout@v3 - name: Download the issue template run: curl -s https://raw.githubusercontent.com/meilisearch/core-team/main/issue-templates/changelog-issue.md > $ISSUE_TEMPLATE - - name: Replace all empty occurences in the templates + - name: Replace all empty occurrences in the templates run: | - # Replace all <> occurences + # Replace all <> occurrences sed -i "s/<>/$MILESTONE_VERSION/g" $ISSUE_TEMPLATE - # Replace all <> occurences + # Replace all <> occurrences milestone_id=$(echo $MILESTONE_URL | cut -d '/' -f 7) sed -i "s/<>/$milestone_id/g" $ISSUE_TEMPLATE - name: Create the issue diff --git a/.github/workflows/publish-docker-images.yml b/.github/workflows/publish-docker-images.yml index 449aec020..f2e119a6d 100644 --- a/.github/workflows/publish-docker-images.yml +++ b/.github/workflows/publish-docker-images.yml @@ -53,7 +53,7 @@ jobs: uses: docker/metadata-action@v4 with: images: getmeili/meilisearch - # The lastest and `vX.Y` tags are only pushed for the official Meilisearch releases + # The latest and `vX.Y` tags are only pushed for the official Meilisearch releases # See https://github.com/docker/metadata-action#latest-tag flavor: latest=false tags: | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1c40c7dac..bf433eb09 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -102,7 +102,7 @@ The full Meilisearch release process is described in [this guide](https://github ### Release assets For each release, the following assets are created: -- Binaries for differents platforms (Linux, MacOS, Windows and ARM architectures) are attached to the GitHub release +- Binaries for different platforms (Linux, MacOS, Windows and ARM architectures) are attached to the GitHub release - Binaries are pushed to HomeBrew and APT (not published for RC) - Docker tags are created/updated: - `vX.Y.Z` diff --git a/meilisearch-http/src/analytics/segment_analytics.rs b/meilisearch-http/src/analytics/segment_analytics.rs index f0dfd0fab..7b76cdd80 100644 --- a/meilisearch-http/src/analytics/segment_analytics.rs +++ b/meilisearch-http/src/analytics/segment_analytics.rs @@ -349,16 +349,16 @@ pub struct SearchAggregator { // sort sort_with_geo_point: bool, - // everytime a request has a filter, this field must be incremented by the number of terms it contains + // every time a request has a filter, this field must be incremented by the number of terms it contains sort_sum_of_criteria_terms: usize, - // everytime a request has a filter, this field must be incremented by one + // every time a request has a filter, this field must be incremented by one sort_total_number_of_criteria: usize, // filter filter_with_geo_radius: bool, - // everytime a request has a filter, this field must be incremented by the number of terms it contains + // every time a request has a filter, this field must be incremented by the number of terms it contains filter_sum_of_criteria_terms: usize, - // everytime a request has a filter, this field must be incremented by one + // every time a request has a filter, this field must be incremented by one filter_total_number_of_criteria: usize, used_syntax: HashMap, @@ -366,7 +366,7 @@ pub struct SearchAggregator { // The maximum number of terms in a q request max_terms_number: usize, - // everytime a search is done, we increment the counter linked to the used settings + // every time a search is done, we increment the counter linked to the used settings matching_strategy: HashMap, // pagination diff --git a/meilisearch-http/src/option.rs b/meilisearch-http/src/option.rs index bdfa283a6..31942aeec 100644 --- a/meilisearch-http/src/option.rs +++ b/meilisearch-http/src/option.rs @@ -169,7 +169,7 @@ pub struct Opt { } impl Opt { - /// Wether analytics should be enabled or not. + /// Whether analytics should be enabled or not. #[cfg(all(not(debug_assertions), feature = "analytics"))] pub fn analytics(&self) -> bool { !self.no_analytics diff --git a/meilisearch-lib/src/dump/compat/v2.rs b/meilisearch-lib/src/dump/compat/v2.rs index 364d894c4..ba3b8e3a6 100644 --- a/meilisearch-lib/src/dump/compat/v2.rs +++ b/meilisearch-lib/src/dump/compat/v2.rs @@ -145,7 +145,7 @@ pub fn error_code_from_str(s: &str) -> anyhow::Result { "unsupported_media_type" => Code::UnsupportedMediaType, "dump_already_in_progress" => Code::DumpAlreadyInProgress, "dump_process_failed" => Code::DumpProcessFailed, - _ => bail!("unknow error code."), + _ => bail!("unknown error code."), }; Ok(code) diff --git a/meilisearch-lib/src/dump/loaders/v4.rs b/meilisearch-lib/src/dump/loaders/v4.rs index 0744df7ea..44ec23517 100644 --- a/meilisearch-lib/src/dump/loaders/v4.rs +++ b/meilisearch-lib/src/dump/loaders/v4.rs @@ -57,10 +57,10 @@ fn patch_updates(src: impl AsRef, dst: impl AsRef) -> anyhow::Result let updates_path = src.as_ref().join("updates/data.jsonl"); let output_updates_path = dst.as_ref().join("updates/data.jsonl"); create_dir_all(output_updates_path.parent().unwrap())?; - let udpates_file = File::open(updates_path)?; + let updates_file = File::open(updates_path)?; let mut output_update_file = File::create(output_updates_path)?; - serde_json::Deserializer::from_reader(udpates_file) + serde_json::Deserializer::from_reader(updates_file) .into_iter::() .try_for_each(|task| -> anyhow::Result<()> { let task: Task = task?.into(); diff --git a/meilisearch-lib/src/index/search.rs b/meilisearch-lib/src/index/search.rs index 57171d529..1a9aa1d0d 100644 --- a/meilisearch-lib/src/index/search.rs +++ b/meilisearch-lib/src/index/search.rs @@ -27,7 +27,7 @@ pub const DEFAULT_CROP_MARKER: fn() -> String = || "…".to_string(); pub const DEFAULT_HIGHLIGHT_PRE_TAG: fn() -> String = || "".to_string(); pub const DEFAULT_HIGHLIGHT_POST_TAG: fn() -> String = || "".to_string(); -/// The maximimum number of results that the engine +/// The maximum number of results that the engine /// will be able to return in one search call. pub const DEFAULT_PAGINATION_MAX_TOTAL_HITS: usize = 1000; diff --git a/meilisearch-lib/src/index_resolver/index_store.rs b/meilisearch-lib/src/index_resolver/index_store.rs index e4f58f130..ea3c7125a 100644 --- a/meilisearch-lib/src/index_resolver/index_store.rs +++ b/meilisearch-lib/src/index_resolver/index_store.rs @@ -51,7 +51,7 @@ impl MapIndexStore { #[async_trait::async_trait] impl IndexStore for MapIndexStore { async fn create(&self, uuid: Uuid) -> Result { - // We need to keep the lock until we are sure the db file has been opened correclty, to + // We need to keep the lock until we are sure the db file has been opened correctly, to // ensure that another db is not created at the same time. let mut lock = self.index_store.write().await; diff --git a/meilisearch-lib/src/tasks/task_store/store.rs b/meilisearch-lib/src/tasks/task_store/store.rs index 24d0d3a65..32b20aeb8 100644 --- a/meilisearch-lib/src/tasks/task_store/store.rs +++ b/meilisearch-lib/src/tasks/task_store/store.rs @@ -63,7 +63,7 @@ impl Store { /// Returns the id for the next task. /// /// The required `mut txn` acts as a reservation system. It guarantees that as long as you commit - /// the task to the store in the same transaction, no one else will hav this task id. + /// the task to the store in the same transaction, no one else will have this task id. pub fn next_task_id(&self, txn: &mut RwTxn) -> Result { let id = self .tasks