Skip to content

Commit

Permalink
Merge pull request #34 from rdf-ext/path-class-name
Browse files Browse the repository at this point in the history
chore: use correct name for Path class
  • Loading branch information
bergos authored Oct 4, 2024
2 parents 23afa7c + a7cf0ca commit 99c0700
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Path.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Node from './Node.js'
import termOrNodeToString from './utils/termOrNodeToString.js'

class Pattern extends Node {
class Path extends Node {
constructor (elements) {
super({ type: 'Path' })

Expand All @@ -13,4 +13,4 @@ class Pattern extends Node {
}
}

export default Pattern
export default Path

0 comments on commit 99c0700

Please sign in to comment.