From 5803d71382d3d97f357aa30dd90f0b040ff9fa24 Mon Sep 17 00:00:00 2001 From: abraunegg Date: Mon, 4 Nov 2024 10:43:21 +1100 Subject: [PATCH] Complete 't' spelling changes * Complete 't' spelling changes --- .github/actions/spelling/allow.txt | 13 ++++++++++++- docs/advanced-usage.md | 16 ++++++++-------- src/sync.d | 4 ++-- 3 files changed, 22 insertions(+), 11 deletions(-) diff --git a/.github/actions/spelling/allow.txt b/.github/actions/spelling/allow.txt index d5dcb7300..dbf05680b 100644 --- a/.github/actions/spelling/allow.txt +++ b/.github/actions/spelling/allow.txt @@ -291,8 +291,8 @@ raspios rbtree rdo readdata -readret readln +readret reauth Recvd recvfd @@ -344,6 +344,7 @@ stdc stringof Stringz subobject +subobjects svdir swapfile swapon @@ -355,3 +356,13 @@ sysconf sysconfdir systemdsystemunitdir systemduserunitdir +tbh +tdcockers +templ +Thh +thnk +tidx +timerfd +tlsv +Tting +typecons diff --git a/docs/advanced-usage.md b/docs/advanced-usage.md index dda8f79e6..73a8a45c4 100644 --- a/docs/advanced-usage.md +++ b/docs/advanced-usage.md @@ -213,20 +213,20 @@ docker volume create onedrive_conf_sharepoint_site50 #### Create the required unique local path used for the Docker data volume Create the required unique local path used for the Docker data volume ```text -mkdir -p /use/full/local/path/no/tilda/SharePointSite1 -mkdir -p /use/full/local/path/no/tilda/SharePointSite2 -mkdir -p /use/full/local/path/no/tilda/SharePointSite3 +mkdir -p /use/full/local/path/no/tilde/SharePointSite1 +mkdir -p /use/full/local/path/no/tilde/SharePointSite2 +mkdir -p /use/full/local/path/no/tilde/SharePointSite3 ... -mkdir -p /use/full/local/path/no/tilda/SharePointSite50 +mkdir -p /use/full/local/path/no/tilde/SharePointSite50 ``` #### Start the Docker container with the required configuration (example) ```text -docker run -it --name onedrive -v onedrive_conf_sharepoint_site1:/onedrive/conf -v "/use/full/local/path/no/tilda/SharePointSite1:/onedrive/data" driveone/onedrive:latest -docker run -it --name onedrive -v onedrive_conf_sharepoint_site2:/onedrive/conf -v "/use/full/local/path/no/tilda/SharePointSite2:/onedrive/data" driveone/onedrive:latest -docker run -it --name onedrive -v onedrive_conf_sharepoint_site3:/onedrive/conf -v "/use/full/local/path/no/tilda/SharePointSite3:/onedrive/data" driveone/onedrive:latest +docker run -it --name onedrive -v onedrive_conf_sharepoint_site1:/onedrive/conf -v "/use/full/local/path/no/tilde/SharePointSite1:/onedrive/data" driveone/onedrive:latest +docker run -it --name onedrive -v onedrive_conf_sharepoint_site2:/onedrive/conf -v "/use/full/local/path/no/tilde/SharePointSite2:/onedrive/data" driveone/onedrive:latest +docker run -it --name onedrive -v onedrive_conf_sharepoint_site3:/onedrive/conf -v "/use/full/local/path/no/tilde/SharePointSite3:/onedrive/data" driveone/onedrive:latest ... -docker run -it --name onedrive -v onedrive_conf_sharepoint_site50:/onedrive/conf -v "/use/full/local/path/no/tilda/SharePointSite50:/onedrive/data" driveone/onedrive:latest +docker run -it --name onedrive -v onedrive_conf_sharepoint_site50:/onedrive/conf -v "/use/full/local/path/no/tilde/SharePointSite50:/onedrive/data" driveone/onedrive:latest ``` > [!TIP] diff --git a/src/sync.d b/src/sync.d index 1fec03a94..314f6eed1 100644 --- a/src/sync.d +++ b/src/sync.d @@ -751,7 +751,7 @@ class SyncEngine { addLogEntry("The OneDrive Client was asked to search for this directory online and create it if it's not located: " ~ normalisedSingleDirectoryPath); // Query the OneDrive API for the specified path online - // In a --single-directory scenario, we need to travervse the entire path that we are wanting to sync + // In a --single-directory scenario, we need to traverse the entire path that we are wanting to sync // and then check the path element does it exist online, if it does, is it a POSIX match, or if it does not, create the path // Once we have searched online, we have the right drive id and item id so that we can downgrade the sync status, then build up // any object items from that location @@ -6502,7 +6502,7 @@ class SyncEngine { actualItemToDelete = remoteShortcutLinkItem; // Delete the shortcut reference in the local database itemDB.deleteById(remoteShortcutLinkItem.driveId, remoteShortcutLinkItem.id); - if (debugLogging) {addLogEntry("Deleted OneDrive Business Shared Folder 'Shorcut Link'", ["debug"]);} + if (debugLogging) {addLogEntry("Deleted OneDrive Business Shared Folder 'Shortcut Link'", ["debug"]);} } else { // No data was returned, use the original data actualItemToDelete = itemToDelete;