Skip to content

Commit

Permalink
Rephrasing GETNODENAME and GETNODEVALUE descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
gvasquezvargas committed Dec 18, 2024
1 parent 129e4c8 commit a5241ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "GETNODENAME"
---

The `GETNODENAME` function provides the name of the node, depending on its type.
The `GETNODENAME` function provides the name of the node or a placeholder value that reflects the node type.

```
GETNODENAME(n DOMNODE) RETURN VARCHAR2
Expand All @@ -12,7 +12,7 @@ GETNODENAME(n DOMNODE) RETURN VARCHAR2

`n`

`DOMNode` value to provide.
`DOMNode` value you want to obtain.

## Examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "GETNODEVALUE"
---

The `GETNODEVALUE` function provides the value of the node, depending on its type.
The `GETNODEVALUE` function provides the value of the node for `DOMText`-type nodes or displays NULL for other node types.

```
GETNODEVALUE(n DOMNode) RETURN VARCHAR2
Expand Down

0 comments on commit a5241ee

Please sign in to comment.