Skip to content

Commit

Permalink
fix: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Dec 21, 2021
1 parent 733b2cd commit 75f88e3
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions packages/same-structure/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
// This entire package is now deprecated, with its code migrated
// to `@agoric/store` with the exports renamed to their modern
// names.
// to `@agoric/marshal` and `@agoric/store` with the exports renamed to their
// modern names.
//
// This package remains for now in order to
// re-export the new names from `@agoric/store` under the old
// deprecated names that this package used to export. Please update
// uses to the new names as imported from `@agoric/marshal`.
// re-export the new names from `@agoric/marshal` and `@agoric/store` under
// the old deprecated names that this package used to export. Please update
// uses to the new names as imported from `@agoric/marshal`
// and`@agoric/store`.

import { keyEQ, isKey, assertKey } from '@agoric/store';
import { deeplyFulfilled } from '@agoric/marshal';
Expand All @@ -19,5 +20,5 @@ export const isComparable = isKey;
/** @deprecated Use `assertKey` from `'@agoric/store'` */
export const mustBeComparable = assertKey;

/** @deprecated Use `deeplyFulfilled` from `'@agoric/store'` */
/** @deprecated Use `deeplyFulfilled` from `'@agoric/marshal'` */
export const allComparable = deeplyFulfilled;

0 comments on commit 75f88e3

Please sign in to comment.