@tiptap/core 2.0.0-rc.1 → 2.0.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -995,7 +995,7 @@ class ExtensionManager {
995
995
  get plugins() {
996
996
  const { editor } = this;
997
997
  // With ProseMirror, first plugins within an array are executed first.
998
- // In tiptap, we provide the ability to override plugins,
998
+ // In Tiptap, we provide the ability to override plugins,
999
999
  // so it feels more natural to run plugins at the end of an array first.
1000
1000
  // That’s why we have to reverse the `extensions` array and sort again
1001
1001
  // based on the `priority` option.