diff --git a/packages/fileimport-service/ifc/parser.js b/packages/fileimport-service/ifc/parser.js index 607a2dfc1..5cc8a4946 100644 --- a/packages/fileimport-service/ifc/parser.js +++ b/packages/fileimport-service/ifc/parser.js @@ -81,7 +81,7 @@ module.exports = class IFCParser { spcklFaces.push(raw.indices[i]) } - // Create a propper Speckle Mesh + // Create a proper Speckle Mesh const spcklMesh = { speckle_type: 'Objects.Geometry.Mesh', units: 'm', diff --git a/packages/frontend/src/main/components/viewer/ViewerBubbles.vue b/packages/frontend/src/main/components/viewer/ViewerBubbles.vue index 355ea0c6f..e74fba6af 100644 --- a/packages/frontend/src/main/components/viewer/ViewerBubbles.vue +++ b/packages/frontend/src/main/components/viewer/ViewerBubbles.vue @@ -189,7 +189,7 @@ export default { } }, mounted() { - // for some reasons, these are not clearly intialised + // for some reasons, these are not clearly initialised this.users = [] this.selectedIds = [] this.selectionCenter = null diff --git a/packages/frontend/src/main/components/viewer/ViewerFilters.vue b/packages/frontend/src/main/components/viewer/ViewerFilters.vue index ed8af3ca3..d77d6b714 100644 --- a/packages/frontend/src/main/components/viewer/ViewerFilters.vue +++ b/packages/frontend/src/main/components/viewer/ViewerFilters.vue @@ -61,7 +61,7 @@ :style="`${stickyTop ? 'position: sticky; top: 128px;' : ''} z-index: 6`" />
Invite send failed for adresses:
+Invite send failed for addresses:
Optionaly invite users to stream.
+Optionally invite users to stream.
Global variables can hold various information that's useful across the project: - location (city, adress, lat & long coordinates), custom project names or tags, + location (city, address, lat & long coordinates), custom project names or tags, or any other numbers or text that you want to keep track of.
diff --git a/packages/server/modules/comments/graph/schemas/comments.gql b/packages/server/modules/comments/graph/schemas/comments.gql index a4a80eda1..9165cb4ce 100644 --- a/packages/server/modules/comments/graph/schemas/comments.gql +++ b/packages/server/modules/comments/graph/schemas/comments.gql @@ -1,7 +1,7 @@ extend type Query { comment(id: String!, streamId: String!): Comment """ - This query can be used in the follwing ways: + This query can be used in the following ways: - get all the comments for a stream: **do not pass in any resource identifiers**. - get the comments targeting any of a set of provided resources (comments/objects): **pass in an array of resources.** """ diff --git a/packages/server/modules/serverinvites/tests/serverInvites.spec.js b/packages/server/modules/serverinvites/tests/serverInvites.spec.js index 262165eb9..9a34e112e 100644 --- a/packages/server/modules/serverinvites/tests/serverInvites.spec.js +++ b/packages/server/modules/serverinvites/tests/serverInvites.spec.js @@ -70,7 +70,7 @@ describe('Server Invites @server-invites', () => { expect(err.message).to.equal('Already invited!') }) }) - it('low multiple invites for the same email regardles of casing', async () => { + it('low multiple invites for the same email regardless of casing', async () => { await createAndSendInvite({ email: 'dIdImItrIe@gmaIl.com', inviterId: actor.id, diff --git a/packages/viewer/readme.md b/packages/viewer/readme.md index c7bc8c8fe..aecf448d9 100644 --- a/packages/viewer/readme.md +++ b/packages/viewer/readme.md @@ -72,7 +72,7 @@ The 3 optional parameters are: - `colorBy`: A dictionary that makes all objects colored based on a property value. Two types of coloring are supported: - Gradient (from a numeric property): `{ 'type': 'gradient', 'property': propertyName, 'minValue': propertyMinValue, 'maxValue': propertyMaxValue, 'gradientColors': [color1, color2], default: colorForObjectsWithMissingProperty }` - - Category (for coloring each unique value differently): `{ 'type': 'category', 'property': propertyName, 'values': { value1: color1, value2: color2, ... }, 'default': colorForAnyOtherValue }`. The `values` and the `default` parameters are optional: Random colors are generated if they are ommited. + - Category (for coloring each unique value differently): `{ 'type': 'category', 'property': propertyName, 'values': { value1: color1, value2: color2, ... }, 'default': colorForAnyOtherValue }`. The `values` and the `default` parameters are optional: Random colors are generated if they are omitted. - `ghostOthers`: A boolean (default `false`). If set to `true`, then the objects that are filtered out are actually shown with very low opacity, so that the remaining objects have a better context. diff --git a/packages/viewer/src/modules/SceneObjects.js b/packages/viewer/src/modules/SceneObjects.js index 98fca405e..93023e246 100644 --- a/packages/viewer/src/modules/SceneObjects.js +++ b/packages/viewer/src/modules/SceneObjects.js @@ -295,7 +295,7 @@ export default class SceneObjects { let materialId = `${m.type}/${m.vertexColors}/${m.color.toJSON()}/${m.side}/${ m.transparent - }/${m.opactiy}/${m.emissive}/${m.metalness}/${m.roughness}/${m.wireframe}` + }/${m.opacity}/${m.emissive}/${m.metalness}/${m.roughness}/${m.wireframe}` materialId += `--${Object.keys(mesh.geometry.attributes).toString()}--${!!mesh .geometry.index}` diff --git a/packages/webhook-service/src/webhookCaller.js b/packages/webhook-service/src/webhookCaller.js index 71691ff1c..23e23f75b 100644 --- a/packages/webhook-service/src/webhookCaller.js +++ b/packages/webhook-service/src/webhookCaller.js @@ -47,8 +47,8 @@ async function makeNetworkRequest({ url, data, headersData }) { body: JSON.stringify(data), headers, follow: 2, // follow max 2 redirects (fetch defaults to 20) - timeout: 10 * 1000, // timeout after 10sec (defauls to no timeout) - size: 500 * 1000 // 500kb max response size, to accomodate various error responses (defaults to no limit) + timeout: 10 * 1000, // timeout after 10sec (defaults to no timeout) + size: 500 * 1000 // 500kb max response size, to accommodate various error responses (defaults to no limit) }).then(async (res) => ({ status: res.status, body: await res.text() })) //console.log( 'Server response:', response ) diff --git a/utils/helm/speckle-server/Chart.yaml b/utils/helm/speckle-server/Chart.yaml index ba4561c1d..2bf5aa540 100644 --- a/utils/helm/speckle-server/Chart.yaml +++ b/utils/helm/speckle-server/Chart.yaml @@ -7,7 +7,7 @@ type: application # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -# Set by the build process to the corect value +# Set by the build process to the correct value # version: 0.1.0 # This is the version number of the application being deployed. This version number should be @@ -15,5 +15,5 @@ type: application # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -# Set by the build process to the corect value +# Set by the build process to the correct value # appVersion: "2.3.3" diff --git a/workspace.code-workspace b/workspace.code-workspace index a0adfefeb..0513efed8 100644 --- a/workspace.code-workspace +++ b/workspace.code-workspace @@ -34,7 +34,7 @@ }, ], "settings": { - // Some settings below are duplicated in root/.vscode, incase the repo is opened without targetting the workspace file + // Some settings below are duplicated in root/.vscode, incase the repo is opened without targeting the workspace file // I don't think there's a way to force users to open the project as a workspace always "explorer.confirmDelete": false, "files.associations": {