From 6115919b547cca885a9eb10f9d069d9586c5e6d2 Mon Sep 17 00:00:00 2001 From: "nick.tessier" <22119573+nick4598@users.noreply.github.com> Date: Tue, 7 Jan 2025 14:41:46 -0500 Subject: [PATCH] small changes to docs --- docs/learning/transformer/branching-imodels.md | 4 ++-- docs/learning/transformer/index.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/learning/transformer/branching-imodels.md b/docs/learning/transformer/branching-imodels.md index cce06908..c8c58a55 100644 --- a/docs/learning/transformer/branching-imodels.md +++ b/docs/learning/transformer/branching-imodels.md @@ -90,7 +90,7 @@ forward synchronizations. Conflicts during a transformation are resolved in favor of the element which was modified most recently, as stored in the `LastMod` property of an element. Elements in transformations are considered in conflict when their [code](/bis/fundamentals/foundation/codes) is the same. -You can override the method [`IModelTransformer.hasElementChanged`](/reference/core-transformer/imodels/imodeltransformer/haselementchanged/) +You can override the method [`IModelTransformer.hasElementChanged`](/reference/imodel-transformer/imodels/imodeltransformer/haselementchanged/) in your transformer implementation to use more specific logic for determining if an element should be considered changed. Some other data in the iModel follows more specific rules for conflicts: @@ -124,4 +124,4 @@ Synchronization conflicts are not to be confused with concurrent edit conflicts ### Synchronization workflow examples -More in depth samples exist in the [tests](https://github.com/iTwin/itwinjs-core/blob/master/core/transformer/src/test/standalone/IModelTransformerHub.test.ts) for the `@itwin/core-transformer` package. +More in depth samples exist in the [tests](https://github.com/iTwin/imodel-transformer/blob/main/packages/transformer/src/test/standalone/IModelTransformerHub.test.ts) for the `@itwin/imodel-transformer` package. diff --git a/docs/learning/transformer/index.md b/docs/learning/transformer/index.md index 4cb8e04d..4fe82935 100644 --- a/docs/learning/transformer/index.md +++ b/docs/learning/transformer/index.md @@ -1,6 +1,6 @@ # iModel Transformation and Data Exchange -The `@itwin/core-transformer` package provides some classes that implement [Extract, Transform, and Load](https://en.wikipedia.org/wiki/Extract,_transform,_load) (ETL) functionality: +The `@itwin/imodel-transformer` package provides some classes that implement [Extract, Transform, and Load](https://en.wikipedia.org/wiki/Extract,_transform,_load) (ETL) functionality: - [IModelExporter]($transformer) and [IModelExportHandler]($transformer) are the base classes that implement the *extract* (or *export*) part of ETL functionality. - [IModelTransformer]($transformer) is the base class that implements the *transform* part of ETL functionality.